結束時我得到「應用程序應用程序啓動時應用程序啓動結束時有一個根視圖控制器」控制檯,而應用程序未打開後顯示啓動畫面。我的應用程序:didFinishLaunchWithOptions方法是:應用程序預計將有一個根視圖控制器在應用程序啓動disaplying在控制檯
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:[NSBundle mainBundle]];
UIViewController *initViewController = [storyboard instantiateViewControllerWithIdentifier:@"FirstInfo"];
[self.window setRootViewController:initViewController];
[self.window makeKeyAndVisible];
[self.window makeKeyWindow];
return YES;
的main.m是:
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
的應用程序以前工作的罰款。從今天開始,這只是一種快速的功能。我在應用程序中使用ARC和Storyboard。請建議。
是的,我已經做到了。 – Arvind
此外,請參閱我的回答的下一部分 – borrrden