导航“返回”按钮暂停以便在弹出之前执行快速动画

发布于 2024-11-17 02:38:40 字数 97 浏览 2 评论 0原文

我有一个导航控制器和一个滚动视图。

当用户点击“后退”按钮时,我想在视图“弹出”转换开始之前将滚动视图动画设置为偏移 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撕心裂肺的伤痛 2024-11-24 02:38:40

UINavigationBarDelegate 是委托类,它实现 -navigationBar:shouldPopItem。尝试将您的动画代码放在那里。

或者,你可以尝试这个

-(void) viewWillDisappear:(BOOL)animated {
    if ([self.navigationController.viewControllers indexOfObject:self]==NSNotFound) {
       // back button was pressed.  We know this is true because self is no longer
       // in the navigation stack.  Put animation code here
    }
    [super viewWillDisappear:animated];
}

UINavigationBarDelegate is the delegate class and it implements -navigationBar:shouldPopItem. Try putting your animation code in there.

Alternately, you can try this

-(void) viewWillDisappear:(BOOL)animated {
    if ([self.navigationController.viewControllers indexOfObject:self]==NSNotFound) {
       // back button was pressed.  We know this is true because self is no longer
       // in the navigation stack.  Put animation code here
    }
    [super viewWillDisappear:animated];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文