In my iOS app I have several UIElement
s that can process user input: textfields, editable webviews, etc. each time I write something into these UIElement
s the keyboard (obviously) will come up. Before it happens I can catch this event by observing the UIKeyboardWillShowNotification
.
I would like to know what's the way to find out which UIElement
invoked this action.
Thanks for your help!