Add a BOOL
property or instance variable: careAboutKeyboard
that's accessible to both your keyboardWasShown:
and keywardWasHidden:
methods, likely in the view controller those methods are in.
Have it set to YES
when in the viewWillAppear
method, and set to NO
when you show the mail view and in viewWillDisappear
.
Then put all of your scrolling logic in an if block:
if(careAboutKeyboard) {
// Scrolling logic
}
Ben S
2009-11-13 16:22:58