iOS:UItextfield 已禁用
当我们按下文本字段时,该文本字段中会出现一个光标,但我不希望出现该光标。我想禁用这个文本字段,这样你就不能在里面写字了。
我该怎么做?
When we push on a textfield, a cursor appears in this textfield, but I don't want that this cursor appear. I want to make this textfield disabled, where you can't write inside.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用代码在 ViewDidLoad() 中将文本字段的启用属性/userInteractionEnabled 设置为否吗
?
Can you set enabled property/userInteractionEnabled of text field to No in ViewDidLoad() using the code
or
如果您正在使用故事板或 .nib 文件,并且希望它开始时处于禁用状态,您还可以轻松地取消选中界面生成器中的启用属性,以节省一些时间。
If you're working with storyboards or .nib files and you want it to start out disabled you can also easily uncheck the enabled property in interface builder for some time-saving.