UITextView⾃适应⾼度及显⽰html内容
让UITextView⾃适应⾼度:
//⾃适应⾼度
CGRect frame = _textView.frame;
CGSize size = [_ sizeWithFont:_textView.font
constrainedToSize:CGSizeMake(280, 1000)
lineBreakMode:NSLineBreakByTruncatingTail];
frame.size.height = size.height > 1 ? size.height + 20 : 64;
_textView.frame = frame;
显⽰html内容:
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[strHTML dataUsingEncodi
ng:NSUnicodeStringEncoding] options:@{ NSDocu        _textView.attributedText = attributedString;
其中strHTML是html字符串。
view ui框架再来个webView的⾃适应⾼度:
CGRect frame = webView.frame;
CGSize fittingSize = [webView sizeThatFits:CGSizeZero];
frame.size = fittingSize;
webView.frame = frame;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。