Reputation: 714
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
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