最佳答案
我正在将一个应用程序从IOS 6.1移植到IOS 7。我使用的布局中有一个固定宽度的UITextView
,但它的高度是基于其内容大小的。e.对于IOS 6.1,检查ContentSizHeight并将其设置为TextView的框架高度就足够了,但它在IOS 7上不起作用。
How can I then create a UITextView
with a fixed width, but dynamic height based on the text it's showing?
NOTE: I'm creating these views from code, not with Interface Builder.