I know about these notifications on the iPhone, as you may need them to scroll a text view into place when they are obscured by the keyboard:
- UIKeyboardWillShowNotification
- UIKeyboardDidShowNotification
- UIKeyboardWillHideNotification
- UIKeyboardDidHideNotification
Right now, I have a some value that I want to update each time the user enters some input, using ANY control. But I'm dealing with all sorts of different controls here - TextViews, TextFields, Pickers, SegmentedViews, etc.
Is there a way that I can register for a notification that is sent by all UIResponders?
I'm looking for types of notifications other than the ones listed above - is there a definitive list anywhere?