问题
I have subclassed UITextField which has the target
self.addTarget(self, action: "onChange:", forControlEvents: .EditingChanged)
This works fine when the user is typing in the textfield. Although I would need to the same method "onChange:" to be called when the textfield's "text" property is manually updated.
let tf = CustomTextField()
tf.text = "Trigger !!!"
How could I do this ?
回答1:
This is intentional, to prevent endless echo if you need to change the text programmatically in an event handler.
Use sendActions(for controlEvents:)
to manually notify event handlers.
tf.text = "Trigger !!!"
tf.sendActions(for: .editingChanged)
来源:https://stackoverflow.com/questions/35791976/manually-setting-text-for-a-uitextfield-does-not-call-editingchanged