因為某些原因陪捷,不便使用Auto Layout或者需要計算text高度確定view高度臂寝,有同學(xué)遇到UITextView高度計算錯誤蝴悉,導(dǎo)致顯示錯誤的問題晴裹。
用過UITextView的同學(xué)都知道凭涂,UITextView的text默認(rèn)是內(nèi)嵌的祝辣,也就是它的內(nèi)容默認(rèn)不是鋪滿整個view。代碼和效果圖(圖一)如下:
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectZero];
textView.center = self.view.center;
textView.font = [UIFont systemFontOfSize:16.f];
textView.scrollEnabled = NO;
NSString *text = @"qwwerqwerqwerqwerqweqwerqwerqwerqwerqwerqwerqwerqwerqweqwerqwerqwerqwerqwerqw";
textView.text = text;
CGFloat height = [text boundingRectWithSize:CGSizeMake(200, CGFLOAT_MAX) options:NSStringDrawingUsesFontLeading | NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:textView.font} context:nil].size.height;
textView.bounds = CGRectMake(0, 0, 200, height);
[self.view addSubview:textView];
可以看出它的上下左右是有邊距的切油。所以你按照它的寬度去計算文本的高度是錯誤的蝙斜。
iOS7 之后有了 textContainerInset 這個屬性。
ok澎胡,我們設(shè)置 textView.textContainerInset = UIEdgeInsetsZero孕荠;這句話的理解很多同學(xué)認(rèn)為是把textView的邊距設(shè)為0,那我們看一下效果圖:
和圖一相比攻谁,這也不是我們想象中的結(jié)果稚伍,官方解釋如圖三
大致意思是內(nèi)嵌文本容器的布局區(qū)域在view的內(nèi)容區(qū)域內(nèi),好像是廢話戚宦。
其實个曙,textView還有一個屬性:textContainer,通過它可以拿到內(nèi)嵌文本容器在textView里的padding受楼。
NSLog(@"\n\
padding = %lf\n\
textContainerInsetTop = %lf \n\
textContainerInsetLeft = %lf \n\
textContainerInsetBottom = %lf \n\
textContainerInsetRight = %lf \n",textView.textContainer.lineFragmentPadding, textView.textContainerInset.top, textView.textContainerInset.left, textView.textContainerInset.bottom, textView.textContainerInset.right);
輸出看圖四:
所以垦搬,只設(shè)置textView.textContainerInset = UIEdgeInsetsZero,是把文本在內(nèi)嵌容器的邊距設(shè)為0艳汽。
計算高度的時候這樣計算猴贰,方法一:
CGFloat height = [text boundingRectWithSize:CGSizeMake(200 - textView.textContainer.lineFragmentPadding * 2, CGFLOAT_MAX) options:NSStringDrawingUsesFontLeading | NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:textView.font} context:nil].size.height;//寬度減去左右兩邊的padding
textView.bounds = CGRectMake(0, 0, 200, height);
或者設(shè)置,方法二 :
CGFloat padding = textView.textContainer.lineFragmentPadding;
textView.textContainerInset = UIEdgeInsetsMake(0, -padding, 0, -padding);
這個時候計算的高度都是正確的河狐,方法二的效果圖: