xcode4.5 iOS6 cocos2d-x 横屏解决方案

来源:互联网 发布:python开发微信小程序 编辑:程序博客网 时间:2024/05/12 13:18
1.在 RootViewController.m总增加

?
1
2
3
4
5
6
7
8
-(NSUInteger)supportedInterfaceOrientations{
   returnUIInterfaceOrientationMaskLandscape;
}
 
 
- (BOOL)shouldAutorotate {
   returnYES;
}

2.在 AppDelegate.m 中增加

?
1
window.rootViewController = viewController;

原创粉丝点击