如何构建具有多种类型控制器的应用程序?
我怎样才能完成以下任务:
- 当我的应用程序加载 UIView 将显示 4 个按钮
- 单击按钮将加载可以显示多个视图的 UITabBarController (不是带有 UITabBar 的 UIView)。
这对我来说似乎具有挑战性,因为为了让我使用 UITabBarController,我需要将其添加到我的 appDelegate 中的窗口子视图中。通过这样做,我的应用程序将自动在根视图中加载 UITabbarController。
How can I accomplish the following:
- When my app loads a UIView will show 4 buttons
- Clicking on a button will load a UITabBarController (not a UIView with a UITabBar) that can display multiple views.
This seems challenging to me, because in order for me to use the UITabBarController I need to add this to the window's subview in my appDelegate. By doing so, my app automatically will load with the UITabbarController in the root view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要在应用程序委托中添加
UITabBarController
,这只是最常见的使用方法。您可以让初始视图使用简单的UIViewController
,然后在按下按钮时加载UITabBarController
(以编程方式或从笔尖),然后显示它。以下是您的应用程序委托中可能包含的内容的示例:
You don't need to add the
UITabBarController
in the application delegate, that's just the most common way to use it. You can have your initial view use a simpleUIViewController
, then when the button is pressed load theUITabBarController
(either programmatically or from a nib), and then display it.The following is an example of what might be in your app delegate: