iPad - 显示/隐藏 UIBarButton
有没有办法隐藏或显示 UIBarButtonItem?
Is there a way to hide or show a UIBarButtonItem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法隐藏或显示 UIBarButtonItem?
Is there a way to hide or show a UIBarButtonItem?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用它来隐藏栏按钮项目。
self.navigationItem.rightBarButtonItem = nil;
USe this to hide barbutton item.
self.navigationItem.rightBarButtonItem = nil;
实际上,UIBarButtonItem 并不响应 .hidden。它不是 UIButton 的子类。
以下是如何切换三个按钮(左按钮、中按钮和右按钮)的快速示例。
//所以,在正确的位置
//然后在正确的位置
//然后在正确的位置
然后在笔尖中的 IB 或 Xcode4 IB 中重新加载您的类
// 然后在您的
view_switcher/controller 方法
中然后连接按钮并添加你的视图切换,这应该可以......
假设你可以填写一些部分
Actually, UIBarButtonItem does not respond to .hidden. It is not a subclass of UIButton.
Here is a quick example of how you can switch three buttons a left button a middle button and a right button.
//So, in the proper place
//Then this in the proper place
//Then in the proper place
then reload your class in IB or Xcode4 IB in your nib
// then in your
view_switcher/controller methods
then connect the buttons and add your view switching, this should do it ...
Assuming you can fill in some parts
这是我的 UIBarButtonItem 子类,用于公开 setHidden 方法。每当我的栏上有“可选”按钮时我就会使用它。
它适用于文本或图像按钮。
}
This is my UIBarButtonItem subclass to expose a setHidden method. I use it whenever I have an "optional" button on my bars.
It works for textual or image buttons.
}