iPhone,如何禁用/启用基于表视图行选择的导航按钮?
我只想在选择表视图中的行时启用导航栏选择按钮。
如何 ?
I want to only have my navigation bar select button enabled when a row in my table view is selected.
How ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
UIBarItem
(UIBarButtonItem
的超类)上的enabled
属性在表格视图委托的tableView:didSelectRowAtIndexPath:< 中启用/禁用它/code> 和
tableView:didDeselectRowAtIndexPath:
方法。Use the
enabled
property onUIBarItem
(superclass ofUIBarButtonItem
) to enable/disable it in your table view's delegate'stableView:didSelectRowAtIndexPath:
andtableView:didDeselectRowAtIndexPath:
methods.