如何在 Tabbarcontroller 中定义启动控制器

发布于 2024-10-10 09:50:57 字数 67 浏览 2 评论 0原文

如何始终在同一个 Viewcontroller 上启动我的 Iphone 应用程序(Tabbarcontroller)?

How can I start my Iphone App (Tabbarcontroller) always on the same Viewcontroller?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞梦里开花 2024-10-17 09:50:57

默认情况下,第一个视图控制器将始终是默认视图控制器(视图控制器将按照添加的顺序显示在选项卡栏上,等等)。

但是,您可以通过 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 the selectedIndex 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文