非活动 UIBarButtonItem
有人知道联系人应用程序中的非活动完成按钮是如何完成的吗?
我想实现类似的东西。
到目前为止,我还没有在 UIBarButtonItem 上看到任何非活动属性...
Does someone know how the inactive done button in the Contacts App is done?
I would like to implement something similar.
So far I haven't seen any inactive property on UIBarButtonItem...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
enabled
属性。当然,您需要对视图控制器中的输入控件使用自己的验证检查,以确定是否将其设置为启用。enabled
属性位于UIBarItem
中,UIBarButtonItem
继承自该类,这就是为什么您在UIBarButtonItem
文档。Use the
enabled
property. Of course, you'll need to use your own validation checks on the input controls in your view controller, to determine whether or not to set it enabled.The
enabled
property is found inUIBarItem
, the class from whichUIBarButtonItem
inherits, which is why you won't find it in theUIBarButtonItem
docs.