Weird thing occurs when using sizetofit of a UITex

2019-02-06 08:56发布

When I test my app on IOS7 simulator. Sometimes I found it is weird when I using sizeToFit of a UITextView. The frame after sizeToFit seems right but the text can only show partly just like the photo below. (The gray area represents the UITextView new frame after sizeToFit, the whole sentence should be "which sparked a tense relationship between the two.")

enter image description here

The UITextView text is set via attributedText. It seems the problem occurs with some sentences only and is OK for most sentences.

I met this problem several times and can not solve it yet. Any help will be appreciated. Thanks.

Update:

Finally I solve the problem in an ugly way. I reset the text of the textView.

NSString *text = textView.text;
textView.text = @"";
textView.text = text;

Now it can show the whole content after sizeToFit. I think it seems like a IOS 7's bug.

4条回答
相关推荐>>
2楼-- · 2019-02-06 09:50

Have you got "clip subviews" checked in interface builder?

Try to uncheck it or setting this property to "NO".

查看更多
走好不送
3楼-- · 2019-02-06 09:50

Try this it worked for me.

[textView setTextContainerInset:UIEdgeInsetsMake(0, 0, 0, 0)];
查看更多
啃猪蹄的小仙女
4楼-- · 2019-02-06 09:56

I had the same problem, it took me a while to figure it out, you simply need to resize the text container

[textview sizeToFit];
[textview.textContainer setSize:textview.frame.size];
查看更多
做自己的国王
5楼-- · 2019-02-06 09:58

Noticed in IOS7 sizeToFit wasn't working also - perhaps the solution may help you too, needs the additional layoutIfNeeded

[UITEXTVIEW sizeToFit];
[UITEXTVIEW layoutIfNeeded];
[UITEXTVIEW setTextContainerInset:UIEdgeInsetsMake(0, 0, 0, 0)];
查看更多
登录 后发表回答