在 iPad 上浏览 UINavigationController ViewController
我有一个主详细信息应用程序。我有几个视图,并将它们推入detailNavigationController 中。但是每次我想显示视图时,我都需要再次推送它们,并且detailNavigation控制器中有很多viewController。有没有办法导航到已经推送到导航控制器的 viewController?
I have a master detail application. I have several views and I push them into the detailNavigationController. But every time I want to show the views I need to push them again and there are a lot of viewControllers in the detailNavigation controller. Is there a way to navigate to a viewController that's already been pushed to the navigation controller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是使用
popToViewController:
方法。I just use the
popToViewController:
method.