"Editing Did End" event is not calling its event handler

I have a UITextField object on a storyboard's scene. Its "Editing Did End" event is connected to the view controller's "actIPhoneName()" event handler method as shown in this screenshot. I configured the keyboard to show its "Done" key. I expected that when this Done button is touched, that the keyboard would disappear, and the actIPhoneName() method would be called. But neither of these happen, nor does anything else. The UITextField object remains in edit mode. The breakpoint is never reached.

What must I do to make the Done keyboard key work to make the UITextField object lose its First Responder status, and call its "Editing Did End" event handler method?

Accepted Reply

This problem is solved. I was using the wrong event. The event needs to be "Did End On Exit".

Replies

This problem is solved. I was using the wrong event. The event needs to be "Did End On Exit".