如何让UITextField不响应?

发布于 2024-11-03 04:32:28 字数 87 浏览 5 评论 0原文

我想制作一个 UITextField,以便当我触摸它时,它会运行某种方法,然后如果条件正确(在该方法中进行测试),它将运行其正常的“调出键盘”方法。我该怎么做?

I want to make a UITextField so that when I touch it, it runs a certain method, then if the conditions are correct (which are tested within that method), it will run its normal 'bring up the keyboard' method. How can I do this?

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

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

发布评论

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

评论(1

高跟鞋的旋律 2024-11-10 04:32:28

为您的 UITextField 设置委托

textField.delegate = self;

然后在委托中实现:

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

Set a delegate for your UITextField

textField.delegate = self;

Then within the delegate, implement:

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
    if (condition) {
        return YES;
    }
    else {
        return NO;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文