标签:
如果想整个APP竖屏,可以写一个BaseViewcontroller
1 先在AppDelegate.m里面重写如下方法
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
//返回你要支持的屏幕方向,如果只支持竖屏,直接返回竖屏的宏
}
2 在UIViewController的
- (void)viewWillAppear:(BOOL)animated{
//interfaceOrientation为方向宏定义
[[UIDevice currentDevice] setValue:[NSNumber numberWithInteger:interfaceOrientation] forKey:@"orientation"];
}
如果界面中有个别界面需要横屏,可以增加一个标志位来控制supportedInterfaceOrientationsForWindow的返回值,比如:
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
if (!self.allowRotation) {
return UIInterfaceOrientationMaskPortrait;
}
return UIInterfaceOrientationMaskLandscapeRight; //界面只能往右旋转
}
然后在你需要横屏的UIViewController代码里面如下实现:(记得横屏标志位的值设置)
- (void) viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[[UIDevice currentDevice] setValue:[NSNumber numberWithInteger:UIInterfaceOrientationLandscapeRight] forKey:@"orientation"];
}
preferredInterfaceOrientationForPresentation这个方法在不同IOS版本的定义是不一样的。
<IOS9:
- (NSUInteger)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationPortrait;
}
>=IOS9
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
注意如果重写了supportedInterfaceOrientations方法,那么在IOS7版本中从横屏切换到竖屏会存在切换不过来的问题。我当时就是在UIViewControler里面重写了
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
最后为了解决IOS7版本的问题,需要把如上重写删除。
同时注意UIViewController里面的interfaceOrientation属性也是在IOS8以后就不建议使用了。
标签:
原文地址:http://www.cnblogs.com/dwade/p/5720615.html