当前位置:  开发笔记 > IOS > 正文

旋转时隐藏导航栏

如何解决《旋转时隐藏导航栏》经验,为你挑选了2个好方法。

我有一个带导航栏的UIView.当用户将iPhone横向放置并在纵向视图上再次显示时,如何隐藏导航栏?



1> adam..:
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
    [[self navigationController] setNavigationBarHidden:UIInterfaceOrientationIsLandscape(toInterfaceOrientation) animated:YES];
    [[UIApplication sharedApplication] setStatusBarHidden:UIInterfaceOrientationIsLandscape(toInterfaceOrientation) animated:YES];
}



2> August..:

这在文档中很容易找到.在UINavigationController文档中,要隐藏导航栏,请使用:

- (void)setNavigationBarHidden:(BOOL)hidden animated:(BOOL)animated

如果要在设备旋转时执行此操作,则需要在视图控制器方法中执行此操作(在UIViewController文档中提到):

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration

推荐阅读
手机用户2402851335
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有