我有一个UIScrollView
包含一些组件的组件,其中一个组件是一个UITextView
,我想要的是让UITextView
动态扩展与UIScrollView
,实际上我使用autoLayout
,所以这段代码不起作用:
CGRect frame = self.detailTextView.frame;
frame.size.height = self.detailTextView.contentSize.height;
self.detailTextView.frame = frame;
scroll.contentSize = CGSizeMake(scroll.contentSize.width,
300 + self.detailTextView.frame.size.height);
[self.detailTextView setFrame:frame];
我想要的是用故事板元素帮助我做到这一点。