使用Interface Builder和Storyboared,我用3个视图构建了UITabBarController。默认情况下,当用户打开应用程序时,首先显示View,但在某些条件下,我需要显示第二个视图。
因此,从AppDelgate didFinishLaunchingWithOptions方法,我需要显示-present - 第二个视图控制器;
注意,我试着做这样的事情:
[myfirstcontrooler presentViewController:mycontrooler animated:YES completion: nil];
但我得到了
应用程序尝试以模态方式呈现活动控制器
错误&崩溃。
感谢。
答案 0 :(得分:1)
尝试
[self.navigationController pushViewController:mycontrooler animated:YES];