原文:http://blog.csdn.net/nong1209/article/details/8148601
1.在 RootViewController.m总增加
1
2
3
4
5
6
7
8
|
-(
NSUInteger
)supportedInterfaceOrientations{
return
UIInterfaceOrientationMaskLandscape;
}
- (
BOOL
)shouldAutorotate {
return
YES
;
}
|
2.在 AppDelegate.m 中增加
1
|
window.rootViewController = viewController;
|