单击选项卡栏项目时如何显示导航栏
我正在开发具有 UITabBarController
和 UINavigationController
的 Iphone 应用程序,
我正在项目流程中切换到 UIWebView
,在此之前它都是本机的
当我切换到 webview 我可以隐藏导航栏
,但是当我单击将其带到主页的选项卡时,我看不到导航栏,除非我选择任何选项并转到下一个视图,
我确实找到了 abt tabbar 功能,
-(void) tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
但我没有了解如何再次取消隐藏或显示导航栏? 请帮忙
I m working on Iphone application which is having UITabBarController
and UINavigationController
I am switching to UIWebView
in flow of the project before which its all Native
When I switch to webview I am able to hide the Navigation bar
but when I clicked on a tab which brings it to home page I cant see navigation bar unless I select any option and go to next view
I did find out abt tabbar function
-(void) tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
but I m not getting how to unhide or display the navigation bar again??
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你习惯
将navigationController的navigationBar设置为隐藏。
如果您在 viewWillAppear 的其他视图中使用它,您需要再次将其设置为非隐藏
I guess you use
to set the navigationController's navigationBar to hidden.
If you use this in the other views in viewWillAppear you need to set it to non hidden again