获取对 UIToolBar 中 UIBarItem 的引用
我已经在界面生成器中构建了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该在“items”属性中查找项目,而不是在子视图中查找。
you should look for the items in the 'items' property and not in subviews.