在AppDelegate.h
里面添加@property(nonatomic,assign)NSInteger allowRotation
;
在AppDelegate.m文件里面添加
1
2
3
4
5
6
7
8
9
10
|
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { if (_allowRotation == 1 ) { return UIInterfaceOrientationMaskLandscapeRight; } else { return (UIInterfaceOrientationMaskPortrait); } } |
这样默认所以的页面就是竖屏的,在要强制横屏的页面的控制器UIViewController
里面,引入#import “AppDelegate.h”
然后
1
2
3
4
5
6
|
( void )viewDidLoad { [ super viewDidLoad]; AppDelegate * appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate; appDelegate.allowRotation = 1 ; } |
就可以让个别页面单独横屏了,在跳出这个横屏页面前修改状态,如下
1
2
|
AppDelegate *delegate = [[UIApplication sharedApplication]delegate]; delegate.allowRotation = 0 ; |
这样既可完整的实现页面的横屏。
以上所述是小编给大家介绍的iOS中将个别页面强制横屏其他页面竖屏,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://blog.csdn.net/dingyawei123/article/details/53666238