当前模型视图不适用于 uinavigation 控制器
我正在使用基于导航的应用程序。我正在使用 Push Pop 来切换视图。但是,当我希望使用当前模型视图控制器来向上滑动视图时……然后推弹出无法正常工作? 我怎样才能向上滑动我的视图/
i am using navigation based app. i am using push pop for switching view. But when i desire to use present model view controller in order to slide up view..then push pop not work properly?
How can i slideup my view/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须使用 navigationController 实例而不是内部的 View。
[self.navigationControllerpresentModalViewController:proView动画:YES];
You have to use the navigationController instance not the View inside.
[self.navigationController presentModalViewController:proView animated:YES];
这可能会有所帮助...
用于推送 UIViewController 的自定义动画
只需实现一个自定义动画类似:
This might help...
Custom Animation for Pushing a UIViewController
Just implement a custom animation something like:
如果我没记错的话,当前的模式查看器不能与导航控制器结合使用。当前的模式查看器旨在完全满足您的需求,而推送/弹出方法则提供了简单的导航控制器创建...
If I'm not mistaken, the present modal viewer can't be combined with a navigation controller. The present modal viewer is build to do exactly what you want, while the push/pop method gives an easy navigation controller creation...