本文介绍了如何禁用 UITextField 的编辑属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 UITextField.我想禁用它的编辑属性.我只想在其中显示一个文本.
I have a UITextField. I want to disable its edit property. I just want to display a text in it.
我怎样才能实现它?.
推荐答案
要在 UITextField 中禁用编辑,您需要在委托方法中返回 NO
textFieldShouldBeginEditing:
To disable editing in UITextField you need to return NO
in delegate method textFieldShouldBeginEditing:
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
return NO;
}
在 UITextView 中禁用编辑将属性 editable
设置为 NO
:
To disable editing in UITextView set property editable
to NO
:
[textView setEditable:NO];
这篇关于如何禁用 UITextField 的编辑属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!