Using iPad split view controller:
(IBAction) textfieldEditingDidBeginAction:(id)sender{
CGPoint scrollPoint = CGPointMake(0.0, 40);
[_scroller setContentOffset:scrollPoint animated:YES];
}
The text field scrolls 40 but after the keyboard appears it returns to previous position. This does not happen with same code in iPhone portrait view. ?? Also this seems to only happen for the first text field, the next one works and returning to the first it then works.