1

最初のタブ バーではなく、3 番目のタブ バーでアプリを開こうとしています。タブバーにアプリを配置する順序に関係なく、左側の最初のアプリが常に最初に開きます。誰でも助けることができますか?以下はタブバーコードです。

 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.

UIViewController *viewController1 = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];

UIViewController *viewController2 = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];

UIViewController *viewController3 = [[ThirdViewController alloc] initWithNibName:@"ThirdViewController" bundle:nil];

UIViewController *viewController4 = [[FourthViewController alloc] initWithNibName:@"FourthViewController" bundle:nil];

UITableViewController *viewController5 = [[FifthViewController alloc] initWithNibName:@"FifthViewController" bundle:nil];


self.tabBarController = [[UITabBarController alloc] init];
self.tabBarController.viewControllers = [NSArray arrayWithObjects:viewController3, viewController4, viewController1, viewController2,  nil];
self.window.rootViewController = self.tabBarController;
4

2 に答える 2

6

試しましたか

[self.tabBarController setSelectedIndex:2];
于 2012-04-12T23:12:46.273 に答える
2

追加するだけ[self.tabBarController setSelectedIndex:2];

2、配列は 0 から始まるため。

于 2012-04-12T23:13:51.233 に答える