我正在尝试在 UICollectionViewCell 内调整 UIScrollView 的大小,但它不会调整它的大小。
-(int)resizeScrollView:(int)height{
NSLog(@"Before Scroll height %f",self.scrollView.frame.size.height);
float currentHeight=self.scrollView.frame.size.height+height+200;
NSLog(@"height %f",currentHeight);
CGSize size=CGSizeMake(self.scrollView.frame.size.width ,
currentHeight + 10 );
[self.scrollView setContentSize:size];
self.scrollView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
NSLog(@"After Scroll height %f",self.scrollView.frame.size.height);
return currentHeight;
}