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

来源:互联网 发布:飞机出售淘宝 编辑:程序博客网 时间:2024/06/06 02:37


原文:http://blog.csdn.net/nong1209/article/details/8148601

1.在 RootViewController.m总增加


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

2.在 AppDelegate.m 中增加

?
1
window.rootViewController = viewController;

原创粉丝点击