iOS scrollview不能滑动的几个原因及解决方法

前几天在开发过程中遇到了scrollview不能滑动的问题,然后就顺便总结了以下的几个原因:

1、contentSize 这个属性,比uiscrollview的frame要小, 无需滚动, 自然就滚动不了。 scrollenabled 这个属性,标识着是否允许滚动,要言设成yes

2、如果这个scrollView是在IB里面生成的话,还得手动设置它的contentSize,并且不能在initWithNibName:bundle:里面设置,因为:

The nib file you specify is not loaded right away. It is loaded the first time the view controller’s view is accessed. If you want to perform additional initialization after the nib file is loaded, override the viewDidLoad method and perform your tasks there.

3、在self.view上添加scrollview 能正常滚动,但再次添加其他的view的时候,就不能正常滚动了,必须用下面的一个方法才行,很好用。

-(void)viewDidLayoutSubviews{    [superviewDidLayoutSubviews]

附加:

viewDidLayoutSubviews

这个方法在controller的的子视图的position和size被改变的时候被调用。
在view 已经被设计好了它的subviews并且还没有被展示在屏幕上时候,可以调用此方法改变这个view。
关键点是改变边界。任何依赖于bounds,并且需要去完成的操作都应该放在viewDidLayoutSubviews中,而不是viewDidLoad或viewWillAppear中。
因为view的frame和bounds直到Auto Layout 已经完成工作的时候才会被确定,所以在执行完Auto Layout之后会调用此方法。

你可能感兴趣的:(iOS scrollview不能滑动的几个原因及解决方法)