单击选项卡时更改 UITabBarController 中的 UIViewController

发布于 2024-12-28 05:10:17 字数 165 浏览 0 评论 0原文

我有带有 4 个选项卡的 UITabBarController。我在 UITabBarController 的每个选项卡上都有 4 个单独的视图。每当我单击 UITabBarController 的第三个选项卡时,我想更改 UITabBarController 的第二个选项卡的 UIViewController 。

I have UITabBarController with 4 tabs. I have individual 4 views on each of the tab of the UITabBarController. I want to change a UIViewController of second tab of the UITabBarController whenever i click the third tab of the UITabBarController.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

別甾虛僞 2025-01-04 05:10:17

您可以通过使用 UITabBarController 的委托来完成此操作 -

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
    if ([tabBarController selectedIndex] == 2)
    {
        NSMutableArray *arr = [[NSMutableArray alloc] initWithArray:[tabBarController viewControllers]];

        NewViewController *nvc = [[NewViewController alloc] init];

        [arr replaceObjectAtIndex:1 withObject:nvc];

        [nvc release];

        [tabBarController setViewControllers:arr];
    }
}

You can do this by using UITabBarController's delegate as -

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
    if ([tabBarController selectedIndex] == 2)
    {
        NSMutableArray *arr = [[NSMutableArray alloc] initWithArray:[tabBarController viewControllers]];

        NewViewController *nvc = [[NewViewController alloc] init];

        [arr replaceObjectAtIndex:1 withObject:nvc];

        [nvc release];

        [tabBarController setViewControllers:arr];
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文