在我的应用程序中,我想使用情节提要在 tabbarviewcontroller 顶部添加一个带有 nib 的视图控制器。例如;当应用程序第一次启动时,我想显示该视图控制器一次,然后当用户启动应用程序时,它应该显示 tabbarviewcontroller。而不是视图控制器。
以下是我的代码
-(void)viewDidAppear:(BOOL)animated
{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc = [storyboard instantiateInitialViewController];
[vc setModalPresentationStyle:UIModalPresentationFullScreen];
[self presentModalViewController:vc animated:YES];
}