In my app, I have a simple textfield set up for the user's zip code while registering:
I am listening for changes to the textfield as so:
[self.zipCode addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
However, if the user begins typing and their ZIP code is shown as a suggestion above the keyboard, textFieldDidChange: is not called when the user taps that suggestion.
What control event should I be listening for to also include keyboard suggestions being selected?