如何让UITextField不响应?
我想制作一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您的 UITextField 设置委托
然后在委托中实现:
Set a delegate for your UITextField
Then within the delegate, implement: