要实现在文章中插入图片实现路径排除
UITextView动态计算高度使用:
boundingRectWithSize:options:context:
但此方法不能与路径排除兼容,高度会比实际高度小很多,但使用sizeThatFits:方法却没有问题,但是sizeThatFits:的性能实在堪忧
各位有什么好的解决方案
代码:
// 此方法获取的高度会小,只会计算文本高度,不会包含被路径排除的部分
CGRect textViewFrame = self.textView.frame;
CGSize maxSize = CGSizeMake(CGRectGetWidth(textViewFrame), MAXFLOAT);
CGRect frame = [self.textView.attributedText boundingRectWithSize:maxSize options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading context:nil];
// 此方法正常,但性能很差
CGSize size = [self.textView sizeThatFits:maxSize];
http://stackoverflow.com/questions/19196758/calculate-cell-height-for-textview-with-exclusion-paths