我的 App Delegate 文件中有以下代码:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
MBFeedViewController *feedViewController = [[MBFeedViewController alloc] init];
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[self.window setRootViewController:feedViewController];
[self.window makeKeyAndVisible];
return YES;
}
然后当我运行我的应用程序时,控制台会输出消息:
应用程序窗口应该在应用程序启动结束时有一个根视图控制器
想不通这个 FeedViewController
不是nil
当我设置窗口的RootViewController
.