设置内容大小后UIScrollView不滚动

时间:2012-11-19 15:29:19

标签: uiscrollview

我有一个UIScrollView,我将帧大小设置为小于内容大小,但它仍然不会滚动。我试过在这里搜索了很多问题,但每次通常这个人都没有设置 - (void)setContentSize:(CGSize)大小。我也在调用它 - (void)viewDidLoad所以不确定我做错了什么。这是我的代码:

self.theScrollView.clipsToBounds = YES;
self.theScrollView.scrollEnabled = YES;
self.theScrollView.frame = CGRectMake(0,19,320,434);
self.theScrollView.contentSize = CGSizeMake(322, 900);

有任何帮助吗?感谢。

0 个答案:

没有答案