Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我们按下文本字段时,该文本字段中会出现一个光标,但我不希望该光标出现。我想让这个文本字段禁用,你不能在里面写。
我怎样才能做到这一点?
您可以使用代码在 ViewDidLoad() 中将文本字段的启用属性/userInteractionEnabled 设置为否吗
textField.enabled = NO;
或者
textField.userInteractionEnabled = NO;
如果您正在使用情节提要或 .nib 文件,并且希望它一开始处于禁用状态,您也可以轻松地取消选中界面构建器中的已启用属性以节省一些时间。