标签栏和故事板:更改默认标签

Thi*_*b L 4 iphone xcode storyboard tabbar

我的故事板中有一个标签栏和5个标签.

我希望我的应用程序加载到中间选项卡,但我找不到如何做到这一点以及在哪里做.

Thi*_*b L 14

我找到了答案!

在appDelegate.m中:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UITabBarController *tabBar = (UITabBarController *)self.window.rootViewController;
tabBar.selectedIndex = 2;
return YES;
}
Run Code Online (Sandbox Code Playgroud)

希望它会有所帮助!