在我当前的应用程序中,我使用 UINavigationController 来显示其他 viewControllers 的内容。它像这样安装在 appDelegate 中。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.viewController = [[ViewController alloc] init];
UINavigationController* navigationController = [[UINavigationController alloc] initWithRootViewController:self.viewController];
[navigationController.navigationBar setBarStyle:UIBarStyleBlackOpaque];
[self.window addSubview:navigationController.view];
[[self window] setRootViewController:navigationController];
[self.window makeKeyAndVisible];
return YES;
}
我现在想要的是创建一个新的视图控制器,在启动画面之后立即显示介绍视频。视频播放完成后,我想推送我的“StartViewController”并在其上安装 UINavigationController。所以这意味着我将在我的其他 ViewController 之一中进行设置,对吗?
那可能吗?有什么帮助吗?谢谢你的时间。