码迷,mamicode.com
首页 > 其他好文 > 详细

关于iPad横屏设置

时间:2017-08-14 10:07:00      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:bar   red   cape   img   bsp   alt   运行   navig   支持   

1.项目需要:iPad支持横屏,iPhone支持竖屏,

 (1)技术分享

(2)在info。plist里面设置View controller-based status bar appearance为NO。技术分享

 (3)这样iPad运行为横屏显示,在不需要显示状态栏的情况下,在ViewController设置

    self.navigationController.navigationBar.hidden = YES;

 (4)iphone的RootVIewCOntroller中设置:

-(UIStatusBarStyle)preferredStatusBarStyle{

 

    return UIStatusBarStyleLightContent;

}

-(BOOL) shouldAutorotate{

 

    return NO;

}

-(UIInterfaceOrientationMask)supportedInterfaceOrientations{

 

    return UIInterfaceOrientationMaskLandscapeLeft|UIInterfaceOrientationMaskPortrait;

    

}

OVER

关于iPad横屏设置

标签:bar   red   cape   img   bsp   alt   运行   navig   支持   

原文地址:http://www.cnblogs.com/liujxbky/p/7355982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!