我有一个带有5个标签视图的故事板。它始终默认为第一个。我希望它是应用程序启动时始终首先显示的第三个视图。
我该怎么做?我无法从Storyboard界面中找到它。
答案 0 :(得分:0)
确定。找到了答案:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UITabBarController *tabBar = (UITabBarController *)self.window.rootViewController;
tabBar.selectedIndex = 2; // zero based index of desired default tab to launch with.
return YES;
}