ストーリーボードにタブバーがあり、5つのタブがあります。
アプリを中央のタブにロードしたいのですが、その方法と場所がわかりません。
答えが見つかりました!
appDelegate.mで:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UITabBarController *tabBar = (UITabBarController *)self.window.rootViewController;
tabBar.selectedIndex = 2;
return YES;
}
お役に立てば幸いです。