3

我有一个 UITextView,当我在 5-6 行之后输入数据时,数据向上滚动并且看不到。当输入的文本超过高度时,是否有任何属性可以用来增加 UITextView 的高度。

请建议伙计们。

4

1 回答 1

1

Use this code to make the height of the UITextView be the same as the height of the content inside it.

CGRect frame = _textView.frame;
frame.size.height = _textView.contentSize.height;
_textView.frame = frame;
于 2013-11-01T08:03:16.867 回答