如何在 iPhone 应用程序中获取对 UITabBar 的引用

发布于 2024-07-17 12:26:59 字数 336 浏览 4 评论 0原文

UIActionSheet 有一个 showFromTabBar: 方法

- (void)showFromTabBar:(UITabBar *)view

但是如何获取对 UITabBar 的引用呢?

我目前正在使用

UITabBar *tabBar = [self.tabBarController.view.subviews objectAtIndex:0];

我还看到有人遍历 tabBarController.view.subviews 并寻找 UITabBar 实例。 有一个更好的方法吗?

UIActionSheet has a showFromTabBar: method

- (void)showFromTabBar:(UITabBar *)view

But how to get a reference to the UITabBar?

I'm currently using

UITabBar *tabBar = [self.tabBarController.view.subviews objectAtIndex:0];

I've also seen someone traversing tabBarController.view.subviews and looking for the UITabBar instance. Is there a better way to do this?

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

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

发布评论

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

评论(2

默嘫て 2024-07-24 12:26:59

您可以使用

UITabBar *tabBar = self.tabBarController.tabBar;

You can use

UITabBar *tabBar = self.tabBarController.tabBar;
活泼老夫 2024-07-24 12:26:59

如果您使用接口构建器,您可以将类似的内容定义为类接口中的成员:

IBOutlet UITabBar* tabbar;

并通过接口构建器将此出口连接到 UITabBar(在树中查看 xib 文档窗口时,UITabBar 应该位于 tabBar 控制器内部)查看模式)。 然后只需使用此选项卡成员在代码中引用它即可。

If you are using interface-builder you can define something like this as a member in your class interface:

IBOutlet UITabBar* tabbar;

And connect this outlet to the UITabBar via interface-builder (the UITabBar should be inside the tabBar controller when viewing the xib document window in tree-view mode). Then just use this tabbar member to reference it in your code.

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