0

如何调整 UITextView 中文本的大小,使其不会截断文本?我有一个 UITextView 设置在特定高度,我希望该 UITextView 中的文本适合该高度。在 UITextField 中有一个 adjustSizeToWidth,但在 UITextView 中没有

4

1 回答 1

1
CGRect frame = textView.frame;
frame.size.height = textView.contentSize.height;
textView.frame = frame;

来源:https ://stackoverflow.com/a/2487402/253008

编辑:

您可以使用

-(CGSize)sizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size

检查 UITextView 中文本的宽度,然后当它达到您设置的宽度时,您可以开始降低字体大小

于 2012-07-02T21:14:10.127 回答