4

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

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

4

1 回答 1

14

我找到了答案!

在 appDelegate.m 中:

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

希望它会有所帮助!

于 2012-08-07T12:32:54.850 回答