gpt4 book ai didi

iphone - 在 Xcode 中以编程方式按下 UITabBar 按钮

转载 作者:行者123 更新时间:2023-12-03 20:45:37 26 4
gpt4 key购买 nike

我使用下面的代码来制作 UITabBarController :

AppDelegate.h内:

    IBOutlet UITabBarController *rootController;
...
@property (nonatomic, retain) IBOutlet UITabBarController *rootController;

AppDelegate.m 内部

@synthesize rootController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
[self.window addSubview:rootController.view];
[self.window makeKeyAndVisible];
return YES;
}

现在我需要知道如何在 AppDelegate 中实现这个方法:

- (void)SwitchToTab:(int)index{
//go to tabview 1 or 2 ...
}

最佳答案

你可以这样做:

self.rootController.selectedIndex = 2; // or whatever index you like

或者这个:

self.rootController.selectedViewController = oneOfTheViewControllersInTheTabController;

请参阅UITabBarController reference page了解详情。

关于iphone - 在 Xcode 中以编程方式按下 UITabBar 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7917705/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com