标签栏&故事板:更改默认选项卡

时间:2012-08-06 15:18:55

标签: iphone xcode storyboard tabbar

我的故事板中有一个标签栏,还有5个标签。

我希望我的应用程序加载到中间选项卡上,但我找不到如何操作以及在哪里执行。

1 个答案:

答案 0 :(得分:14)

我找到了答案!

在appDelegate.m中:

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

希望它会有所帮助!