每当我点击 iPhone 中的第一个 Tabbar 按钮时如何显示主页

发布于 2024-10-21 16:39:36 字数 154 浏览 1 评论 0原文

在我的应用程序中,我使用 UITabbarController,在主页中我有 4 个按钮,它们会导致各自的视图。如果我单击选项卡栏中的另一个按钮,然后再次单击主页按钮,它会显示上次查看的视图而不是实际的主页。每当我单击主页选项卡栏按钮时如何显示主页。

请帮忙... 提前致谢。

In my application i am using UITabbarController and in a homepage I have 4 buttons and they lead to a their respective views. If i click another button in tabbar and again click the home button, It shows the view which was last viewed not the actual home page. How to show the home page whenever i click the home tabbar button.

plz help...
thanks in advance.

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

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

发布评论

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

评论(1

暗喜 2024-10-28 16:39:36

听起来您似乎希望在用户单击 iOS 设备上的主页按钮并重新打开您的应用程序后始终加载特定选项卡?

最简单的方法是

- (void)applicationDidFinishLaunching:(UIApplication *)application

为您想要在 UITabBarController 对象中显示为选定的索引设置 selectedIndex 。

It sounds like you want to always load a particular tab after the user clicks the home button on the iOS device and reopens your app?

The easiest way is in

- (void)applicationDidFinishLaunching:(UIApplication *)application

Set the selectedIndex for the index you want to show up as selected in your UITabBarController object.

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