美文网首页
UITextView自适应内容高度

UITextView自适应内容高度

作者: Liuny | 来源:发表于2020-11-19 19:27 被阅读0次

设置属性

self.contentTV.delegate = self;
//这一句很重要
self.contentTV.scrollEnabled = NO;
//禁止三方键盘换行
self.contentTV.ignoreSwitchingByNextPrevious = YES;

实现代理

#pragma mark - UITextViewDelegate
-(void)textViewDidChange:(UITextView *)textView{
    //这一句很关键
    [textView sizeToFit];
    CGFloat height = textView.contentSize.height;
    if(height > 84){
        self.heightLC.constant = height;
    }else{
        self.heightLC.constant = 84;
    }
}

相关文章

网友评论

      本文标题:UITextView自适应内容高度

      本文链接:https://www.haomeiwen.com/subject/lmbliktx.html