IOS疯狂基础之 UITextView 自动调整高度

这里主要记录一下 textview 的自动调整高度的代码

方法二和三比较可以,方法一在中文后面不断输入数字时 会换行显示之后就算不准,输入一般的字符也是挺符合要求

- (void)textViewDidChange:(UITextView *)textView{

    

//方法一

if(textView.text.length > 20)//一行最多多少字节

    {

        //TextView底面背景图片根据内容自动调整高度

//        UIImage *img = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"inputbox" ofType:@"png"]];

//        [BgImage setImage:[img stretchableImageWithLeftCapWidth:21 topCapHeight:14]];

        UIFont *font = [UIFont systemFontOfSize:15];

        CGSize size = [textView.text sizeWithFont:font constrainedToSize:CGSizeMake(300, 1000) lineBreakMode:UILineBreakModeCharacterWrap];

        //BgImage.frame = CGRectMake(0, 202-size.height+15, 320, size.height+28);

        [textView setFrame:CGRectMake(0, 1, 320, size.height+10)];

    //}

    

//方法二

    CGRect frame = textView.frame;

    CGSize size = [textView.text sizeWithFont:textView.font

                                constrainedToSize:CGSizeMake(280, 1000)

                                    lineBreakMode:UILineBreakModeTailTruncation];

    frame.size.height = size.height > 1 ? size.height + 20 : 64;

    textView.frame = frame;

    

 //方法三   

//    CGRect frame = textView.frame;

//    frame.size.height = textView.contentSize.height;

//    textView.frame = frame;

}

你可能感兴趣的:(高度)