UITextField 值更改事件?
如何才能在文本字段的内容发生更改时调用函数?
How can I make it so that when the contents of a text field changes, a function is called?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何才能在文本字段的内容发生更改时调用函数?
How can I make it so that when the contents of a text field changes, a function is called?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
Objective-C
Swift 4
Objective-C
Swift 4
实际上,
UITextField
没有值更改事件,请使用UIControlEventEditingChanged
Actually, there is no value changed event for
UITextField
, useUIControlEventEditingChanged
我解决了更改 shouldChangeChractersInRange 行为的问题。如果您返回“否”,则 iOS 不会在内部应用更改,而是您有机会手动更改它并在更改后执行任何操作。
I resolved the issue changing the behavior of shouldChangeChractersInRange. If you return NO the changes won't be applied by iOS internally, instead you have the opportunity to change it manually and perform any actions after the changes.
这是我的解决方案。
斯威夫特4
this is my solution.
Swift 4
对于 swift 来说这很方便 -
For swift this comes handy -