我开发的游戏只支持 ios 4.3 以上设备的横向模式。该应用程序在 ios 6 设备上实现了 gamecenter 并在测试期间崩溃,因为 gamecenter 登录屏幕不支持 ios 6 中的横向模式。所以我修复了将以下代码添加到 appdelegate.m 并开始工作但现在应用程序显示完全有线的问题(在 ios6(ios5 等)以下的设备上显示纵向倒置)
-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
return UIInterfaceOrientationMaskAll;
else // iphone
return UIInterfaceOrientationMaskAllButUpsideDown;
}
使用 xcode:4.5 cocos2d v1.0.1
请帮我解决这个问题