我UIViewController
在 Interface Builder 中有一个,我UIScrollView
在UIView
. 它的contentOffset
属性等于 0.0,但是当我滚动UIScrollView
到最底部并推送另一个视图时,contentOffset
更改。
NSLog
给我以下值:
//View just loaded
2013-09-09 16:19:27.455 my_app[24588:907] Scroll View content offset is 0.000000
//We came back from another view
2013-09-09 16:19:30.957 my_app[24588:907] Scroll View content offset is 108.000000
这种行为的原因是什么?我刚刚UIScrollView
在 IB 中添加了一个,根本没有在代码中做任何事情。
scrollView的contentHeight
大于self.view.height
。scrollViewframe
的保持不变。