如何添加多个视图 iPad 视图控制器
我正在制作一个简单的应用程序,并且需要在单击按钮时实际加载不同的视图。
问题是我想将每个视图的代码分离到它自己的类中,因为我不希望将其全部放入一个控制器中。
谁能告诉我执行此操作的最佳方法以及展示如何在视图之间切换的可能性?
谢谢
I am making a simple application and will require to actually load different views on a button click.
The thing is I want to separate the code for each view into it's own class as I don't want it all put into one controller.
Can anyone tell me the best way to do this and also the possibility to show how to switch between views?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 UITabBarController。为每个选项卡分配一个视图控制器,它应该按照您想要的方式运行。有很多关于创建它的教程。您可以查看 这个。
Have a look at UITabBarController. Assign a view controller for each tab and it should behave as you want. There are quite a few tutorials on creating it. You can look at this.