ios - 如何移动到特定的 UI 视图控制器

发布于 2024-12-09 02:23:53 字数 179 浏览 0 评论 0原文

在我的应用程序中,我有一个标签栏。 UI 标签栏控制器 有五个索引。每个索引由 5 个 UI 视图控制器 组成。

在某些情况下,如果我单击按钮,我想打开放置在选项卡栏第 0 个索引中的特定视图控制器。

如何直接单独打开那个视图控制器,请朋友们帮助我......

in my app i have a tabbar. The UI tabbar controller has five indexes. Each indexes consists of 5 UI view controllers.

In some conditions if i click a button i want to open a particular view controller placed in the 0th index of the tab bar.

How to open that view controller alone directly, pls help me friends....

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

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

发布评论

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

评论(2

花海 2024-12-16 02:23:53

首先将视图作为子视图添加到选项卡栏,然后在需要的地方隐藏和显示视图

 UIView *firstview=[[UIView alloc] init];
    [tabbarObject.view addsubview:firstview];

    tabbar object i added to window
    [self.window addsubview:tabbarObject];

first add a view as subview to the tabbar and then hide and show the view whereever you needs

 UIView *firstview=[[UIView alloc] init];
    [tabbarObject.view addsubview:firstview];

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