我怎样才能设置编辑= NO;在 UITextField 中?
我怎样才能设置编辑= NO;在 UITextField 中?
How can I set editing= NO; in UITextField ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我怎样才能设置编辑= NO;在 UITextField 中?
How can I set editing= NO; in UITextField ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您可以像 Swift Update 一样设置它
:
You can set it like
Swift Update:
您还可以实现协议并实现此方法:
执行此操作,关联 XIB 中的任何 UITextField 都将是可编辑的,但您可以获得检查任何属性或在内部执行一些业务逻辑以启用/禁用文本编辑的能力。
我希望这对您有帮助
问候!
Also you can implement the protocol and implements this method:
Doing this any UITextField in associated XIB will be editable, but you gain the hability for checking any properties or doing some business logic inside for enable/disable text editing.
I hope this helps you
Regards!
如果您想隐藏 UITextField,只需执行以下操作:
If you mean you want to hide the UITextField, just do:
使用这段代码
Use this piece of code