每当我点击 iPhone 中的第一个 Tabbar 按钮时如何显示主页
在我的应用程序中,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您似乎希望在用户单击 iOS 设备上的主页按钮并重新打开您的应用程序后始终加载特定选项卡?
最简单的方法是
为您想要在 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
Set the selectedIndex for the index you want to show up as selected in your UITabBarController object.