我怎样才能设置编辑= NO;在 UITextField 中?

发布于 2024-10-12 23:39:59 字数 37 浏览 2 评论 0原文

我怎样才能设置编辑= NO;在 UITextField 中?

How can I set editing= NO; in UITextField ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

枕梦 2024-10-19 23:39:59

您可以像 Swift Update 一样设置它

[yourTextField setUserInteractionEnabled:NO];

yourTextField.setUserInteractionEnabled = false

You can set it like

[yourTextField setUserInteractionEnabled:NO];

Swift Update:

yourTextField.setUserInteractionEnabled = false
习ぎ惯性依靠 2024-10-19 23:39:59

您还可以实现协议并实现此方法:

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
   return NO;
}

执行此操作,关联 XIB 中的任何 UITextField 都将是可编辑的,但您可以获得检查任何属性或在内部执行一些业务逻辑以启用/禁用文本编辑的能力。

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
   if (condition)
       return NO;
   else 
       return YES;
}

我希望这对您有帮助

问候!

Also you can implement the protocol and implements this method:

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
   return NO;
}

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.

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
   if (condition)
       return NO;
   else 
       return YES;
}

I hope this helps you

Regards!

厌味 2024-10-19 23:39:59

如果您想隐藏 UITextField,只需执行以下操作:

[UITextField resignFirstResponder];

If you mean you want to hide the UITextField, just do:

[UITextField resignFirstResponder];
所谓喜欢 2024-10-19 23:39:59

使用这段代码

[textField setEditable:NO];

Use this piece of code

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