UIScrollView contentOffset change after another view pushed(推送另一个视图后 UIScrollView contentOffset 更改)
问题描述
我在 Interface Builder 中有一个 UIViewController
,我在 UIView
中添加了一个 UIScrollView
.它的 contentOffset
属性等于 0.0,但是当我将 UIScrollView
滚动到最底部并推送另一个视图时,contentOffset
会发生变化.
I have a UIViewController
in Interface Builder, and I add a UIScrollView
to the UIView
. It has a contentOffset
property equal to 0.0, but when I scroll the UIScrollView
to the very bottom and push another view the contentOffset
changes.
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
这种行为的原因是什么?我刚刚在 IB 中添加了一个 UIScrollView
并且在代码中什么也没做.
What's the reason of this behaviour? I've just added a UIScrollView
in IB and did nothing in code at all.
scrollView的contentHeight
大于self.view.height
.scrollView 的 frame
保持不变.
The contentHeight
of the scrollView is bigger than self.view.height
. The frame
of the scrollView stays the same.
推荐答案
查看我的回答类似的问题.
您需要在 viewWillAppear:
和 viewWillDisappear:
中适当地设置滚动视图的 contentOffset
.
You need to set the scrollview's contentOffset
appropriately in viewWillAppear:
and viewWillDisappear:
.
另外,请参阅:
- 这个答案问题UIScrollView 弹回 UIViewController 后原点发生变化.
- 这个相关问题,UIScrollview 自动布局问题.
这篇关于推送另一个视图后 UIScrollView contentOffset 更改的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:推送另一个视图后 UIScrollView contentOffset 更改
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01