我的故事板中有一个标签栏,还有5个标签。
我希望我的应用程序加载到中间选项卡上,但我找不到如何操作以及在哪里执行。
答案 0 :(得分:14)
我找到了答案!
在appDelegate.m中:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UITabBarController *tabBar = (UITabBarController *)self.window.rootViewController;
tabBar.selectedIndex = 2;
return YES;
}
希望它会有所帮助!