为什么UIScrollView无法在iOS模拟器中滚动?

时间:2012-11-15 07:04:32

标签: ios uiscrollview scroll

我正在努力熟悉UIScrollView。我尝试将屏幕的UIScrollView's contentSize设置为full width,并在相应的ten times方法中设置heigh屏幕的ViewController's viewDidLoad t。但是,当我尝试在iOS simulator上运行时,我发现该视图不能是scrolled。请帮助提供一些提示和帮助;意见。

谢谢!

1 个答案:

答案 0 :(得分:1)

您需要签入您的代码

1)检查UserInteraction是否已启用UIScrollView如果不是请执行

     [theScrollView setUserInteractionEnabled:YES];

修改

2)请确保您已启用UIScrollView

的滚动
     theScrollView.scrollEnabled = YES;

感谢。