如何使用 UINavigation Controller 在 xcode 4 中创建没有 TableView 的多视图应用程序?
我是 iPhone 开发新手。我想了解如何在没有 TableView 的情况下创建多视图应用程序。该程序的简要描述是:它包括三个视图,每个视图都有一个按钮。当用户点击按钮时,他会绕圈进入下一个屏幕。 1-2.2-3.3-1。
有两件事是最重要的:
- 如何摆脱 TableView 并在没有它的情况下使用 NavigationController?
- 如何从第三个视图返回到第一个视图?
I'm new to iPhone development. I would like to understand how to create a multiview application without TableView. The brief description of the program is: it includes three views, each one has a button. When user taps button it takes him to the next screen going in a circle. 1-2.2-3.3-1.
Two things are most important:
- How to get rid of TableView and use NavigationController without it?
- How to get back from the third view to the first one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只是将 UINavigationController 与 UIView 一起使用,那么这非常简单。在视图 1 上有一个视图或按钮,用于拦截触摸操作。
显示将触摸操作绑定到视图上的按钮 1
这显示了该方法如何将新控制器推送到导航。您可以在视图 2 上执行此操作,也可以将您带到视图 3。
最后,如果您想返回视图 1
了解各种选项的最佳方法是查看文档 UINavigationController。
If you're just using UINavigationController with UIView's it is pretty easy. Have a view or button on view 1, that intercepts the touch action.
Shows binding a touch action to the button on your view 1
This shows how the method pushes a new controller to the navigation. You can do this on view 2 to take you to view 3 as well.
Finally, if you want to get back to view 1
The best way to learn about the various options is to check out the documentation UINavigationController.