0
我正在嘗試調整UICOllectionViewCell中的UIScrollView的大小,但它不會調整它的大小。用setcontentsize調整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;
}
不工作。 scrollview現在消失了。完全消失了。 – user1688346 2013-04-22 23:49:03
你在調用'-resizeScrollView'的上下文是什麼? – 2013-04-23 00:38:32
是的,它是resizecrollview。我最終重新創建框架並將其添加到滾動視圖。 – user1688346 2013-04-23 05:22:28