所以我的页面上有两个元素。一个UIScrollView,它包含页面的所有内容,一个UITextView,它可以动态填充文本,然后调整为特定大小,如下所示:
self.productDescription.text = @"Long Description here.....";
CGRect frame = self.productDescription.frame;
frame.size.height = 10;
self.productDescription.frame = frame;
这可以像人们希望的那样可爱 - 但是,只要您滚动嵌入的UIScrollView,textview就会恢复为原始大小。