have the following:
// watch the fields
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selec
As a temporary workaround until Apple fixes this, you can use the following code example:
//view is a UITextField
NSString *temp = ((UITextField*)view).text;
((UITextField*)view).text = @"";
[((UITextField*)view) insertText:[NSString stringWithFormat:@"%@%@", @"-", temp]];
That code will continue to fire the event.
This works too:
[((UITextField*)view) sendActionsForControlEvents:UIControlEventEditingChanged];