iOS:UItextfield 已禁用

发布于 2024-11-06 07:22:22 字数 81 浏览 0 评论 0原文

当我们按下文本字段时,该文本字段中会出现一个光标,但我不希望出现该光标。我想禁用这个文本字段,这样你就不能在里面写字了。

我该怎么做?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怀里藏娇 2024-11-13 07:22:22

您可以使用代码在 ViewDidLoad() 中将文本字段的启用属性/userInteractionEnabled 设置为否吗

textField.enabled = NO;

textField.userInteractionEnabled = NO;

Can you set enabled property/userInteractionEnabled of text field to No in ViewDidLoad() using the code

textField.enabled = NO;

or

textField.userInteractionEnabled = NO;
书信已泛黄 2024-11-13 07:22:22

如果您正在使用故事板或 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文