我不断收到这个错误,我不知道为什么。一切正常,突然间我收到了这个错误。我没有更改代码,并且在委托中设置了 rootViewController,所以我不明白为什么会出现此错误。这是我的 appDelegate.m 文件中的代码。
#import "WhereAmIAppDelegate.h"
#import "WhereAmIViewController.h"
@implementation WhereAmIAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
WhereAmIViewController *wvc = [[WhereAmIViewController alloc] initWithNibName:@"WhereAmIViewController" bundle:nil];
[[self window]setRootViewController:wvc];
[self.window makeKeyAndVisible];
return YES;
}
我明确设置了rootViewController,所以我不知道为什么会这样。