Thib L
Thib L

Reputation: 714

Tab bar & Storyboard : Change the default tab

I have a tab bar in my storyboard, and 5 tabs.

I want my app to load on the middle tab but I can't find how to do it and where to do it.

Upvotes: 4

Views: 2699

Answers (1)

Thib L
Thib L

Reputation: 714

I found the answer !

In appDelegate.m :

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

Hope it will help !

Upvotes: 14

Related Questions