如何更改后退按钮上的弹出视图控制器动画?
我使用以下语句推动视图控制器:
[[self navigationController] pushViewController:self.customViewController animatedWithTransition:UIViewAnimationTransitionFlipFromLeft];
现在,当我按下后退按钮时,我想使用 uiviewanimationtransitionflipfromright 为其设置动画。
就像
[self.navigationController popViewControllerAnimatedWithTransition:UIViewAnimationTransitionFlipFromLeft];
我该怎么做?
谢谢
I am pushing my view controller with the following statement :
[[self navigationController] pushViewController:self.customViewController animatedWithTransition:UIViewAnimationTransitionFlipFromLeft];
Now when I am pressing the back button I want to animate it with the uiviewanimationtransitionflipfromright .
like
[self.navigationController popViewControllerAnimatedWithTransition:UIViewAnimationTransitionFlipFromLeft];
How Can I do so ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可以帮助您为后退按钮中的视图设置动画。
This helps you to animating the view in back button.
对于推送:
对于弹出:
https://stackoverflow.com/a/5889757/1915820
For Push:
For Pop:
https://stackoverflow.com/a/5889757/1915820
请参阅此处进行自定义后退动画:
阻止点击导航栏中的“后退”按钮时出现动画?
See here for doing custom back anim:
Prevent the animation when clicking "Back" button in a navigation bar?