1

我刚开始为我的新 iphone 5 开发游戏,但每次在我的设备上构建游戏时,我都会在控制台中收到此警告。

Application windows are expected to have a root view controller at the end of application launch

我在网上搜索了一个修复程序,但我发现的所有内容都说要放置这行代码:

window.rootViewController = rootViewController; 

在这种方法中:

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

但是这样做的问题是在 cocos2d 中必须注释掉这行代码,因为无论选择什么方向,它都会导致应用程序以纵向模式启动。那么有人知道解决这个问题吗?

4

1 回答 1

1

这可能与解决您的问题完全无关,但不久前我开始使用 iOS 6.0 时遇到了同样的错误。

我在启动时使用该方法- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation对我的视图进行了一些初始化,但后来我发现它在 iOS 6.0 中已被弃用(如此所述)导致该方法从未像以前那样被调用。

如果这是您的情况,您可以简单地实现以下内容:

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration { [self shouldAutorotateToInterfaceOrientation:toInterfaceOrientation]; }

于 2012-09-28T22:33:18.753 回答