UINavigationItem 中 UIBarButtonItem 的可见性
在Interface Builder中,我没有给UIBarButtonItem一个标题,那么UIBarButtonItem在运行时就不会出现。 我想在我的代码中控制它,但是当我将 UIBarButtonItem 的 title 属性设置为 @"" 时,栏按钮并没有消失。 不知道UINavigationItem中是否有一个属性可以控制UIBarButtonItem的可见性。 多谢!
In Interface Builder, I did't give the UIBarButtonItem a title, then the UIBarButtonItem was not appear when it was running.
I want to control it in my code, but when I set the title property of UIBarButtonItem to @"", the bar button was not disappear instead.
I don't know if there is a property to control the visibility of UIBarButtonItem in UINavigationItem.
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 UIBarButtonItem 类参考 。
您还可以尝试
self.navigationItem.leftBarButtonItem = nil;
Check out the UIBarButtonItem Class Reference.
You can also try
self.navigationItem.leftBarButtonItem = nil;