导航“返回”按钮暂停以便在弹出之前执行快速动画
我有一个导航控制器和一个滚动视图。
当用户点击“后退”按钮时,我想在视图“弹出”转换开始之前将滚动视图动画设置为偏移 0, 0。
最好的方法是什么?
I have a navigation controller and a scroll view inside it.
When the user hits the "Back" button I would like to animate the scroll view to offset 0, 0 before the view "pop" transition begins.
Whats the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UINavigationBarDelegate
是委托类,它实现-navigationBar:shouldPopItem
。尝试将您的动画代码放在那里。或者,你可以尝试这个
UINavigationBarDelegate
is the delegate class and it implements-navigationBar:shouldPopItem
. Try putting your animation code in there.Alternately, you can try this