I have few uitextfields in my ui where keyboard will overlaps few of the uitextfields which are at bottom of my screen, to handle this i have implemented UIKeyboard notifications like
- (void)keyboardWasShown:(NSNotification*)aNotification - (void)keyboardWillBeHidden:(NSNotification*)aNotification and my uitextfields keyboard returnKeyType is UIReturnKeyNext so when ever user taps on Next button i'm making my next textfield as becomeFirstResponder but when the textfield which is being hidden from keyboard becomes first responder its frame is not changing and updating to visible area boundary out of uikeyboard since the notification triggers only for the first time when i tap on a textfield. I need to trigger this keyboardWasShown method on every becomeFirstResponder event. Any help is appreciated in advance.