I finally figured out the issue. I did have too many observers or rather nothing to stop the observing. I had to separate the notification observers for each text field and then remove the observer as soon as the text editing stopped:
[[NSNotificationCenter defaultCenter] removeObserver:self];
Thanks again for all the ideas.
|