这是我的 didFinishLaunchingWithOptions
我使用故事板,我正在教一个学徒。
在 didFinishLaunchingWithOptions 结束时,我们应该已经有一个 rootViewController 了吧?
好,
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
//[Crashlytics startWithAPIKey:@"a08863b514ef09558ba82fec070cc7468fdbeeae"];
[BGMDApplicationsPointers doThisAtStartup];
[BGMDApplicationsPointers rootViewTabBarController].delegate=self;
return YES;
}
我没有看到任何 rootViewController 被分配。我只设置了一些委托(我的主要代码)。
看起来项目必须从故事板上决定 rootViewController 。但是在项目中的哪个位置指定了 rootViewController 的位置或要加载的故事板?