获取对 UIToolBar 中 UIBarItem 的引用

发布于 2024-10-15 06:27:55 字数 284 浏览 3 评论 0原文

我已经在界面生成器中构建了 GUI,其中包含工具栏+栏项目。现在我需要在代码中引用按钮(UIBarItems),并且我尝试使用 viewWithTag 方法(因为我已经在 IB 中给出了栏项目标签编号)。

这是我的代码,但它总是返回 null!

UIBarItem *backButton = (UIBarItem *)[self.toolbar viewWithTag:1]; 
NSLog(@"backButton: %@", backButton); // returns nil

I have constructed my GUI in interface builder, with at toolbar + bar items. Now I need a reference to the buttons (UIBarItems) in code, and I try with the viewWithTag method (as I have given the bar items tag numbers in IB).

Here is my code, but it always returns null!

UIBarItem *backButton = (UIBarItem *)[self.toolbar viewWithTag:1]; 
NSLog(@"backButton: %@", backButton); // returns nil

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

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

发布评论

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

评论(1

彼岸花似海 2024-10-22 06:27:55

您应该在“items”属性中查找项目,而不是在子视图中查找。

you should look for the items in the 'items' property and not in subviews.

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