如何在 Tabbarcontroller 中定义启动控制器
如何始终在同一个 Viewcontroller 上启动我的 Iphone 应用程序(Tabbarcontroller)?
How can I start my Iphone App (Tabbarcontroller) always on the same Viewcontroller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,第一个视图控制器将始终是默认视图控制器(视图控制器将按照添加的顺序显示在选项卡栏上,等等)。
但是,您可以通过
selectedViewController
属性选择不同的视图控制器UITabBarController 类。 (您还可以使用selectedIndex
属性通过数字索引选择视图控制器。)UPDATE
顺便说一句,如果您想强制应用程序退出(而不是允许它退出)进入后台)将“应用程序不在后台运行”选项添加到应用程序的 plist 文件并将其设置为 true。也就是说,当前的行为是正确的。
By default the first view controller will always be the default (and view controllers will appear on the tab bar in the order added, etc.)
However, you can select a different view controller via the
selectedViewController
property of the UITabBarController class. (You can also use theselectedIndex
property to select a view controller by index numerically.)UPDATE
Incidentally, if you want to force the application to quit (rather than allow it to go into the background) add the "Application does not run in background" option to your application's plist file and set it to true. That said, the current behaviour is correct.