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