UITabBarController 中的主页视图
我有一个起始 UIView,如果用户单击起始视图中的按钮,则会显示一个选项卡栏模型视图。在该视图中,我有一个选项卡栏控制器,其中有 4 个项目作为第一个“主页”选项卡栏项目,如果用户单击它,则会关闭选项卡栏控制器视图并返回到开始视图(因此,当加载选项卡栏视图时,它会以第二个选项卡栏项目)。我的问题是:当用户单击主页选项卡栏项目时,如何关闭选项卡栏控制器。
I have a starter UIView and if user clicks the button in starter view present a tabbar model view. In that view, I have a tab bar controller with 4 items as the first one "Home" tabbar item where if user clicks it dismisses the tabbar controller view and go back to the start view (so when tabbar view is loaded it starts with the second tabbar item). My question is: how can I dismiss the tabbar controller when user clicks the home tabbar item.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我认为这违反了指导方针,建议您尝试不同的方法。但是,您可以使主页按钮加载一个视图,该视图的类在
viewWillAppear
中具有[selfpresentModalViewController:starterViewControlleranimated:NO];
Ehm I think this is against guidelines and would advice you to try a different approach. However, you could make the home button load a view which class has
[self presentModalViewController:starterViewController animated:NO];
inviewWillAppear