1

Is it possible to disable the keyboard animation on pushViewController so that the keyboard slides off with the rest of the screen (instead of sliding down while the rest of the screen slides off)?

I currently call [[self view] endEditing: YES] in - (void)viewWillDisappear:(BOOL)animated which is causing the keyboard to slide down. I don't know of a way around this.

swiftBoy
  • 35,607
  • 26
  • 136
  • 135
mark
  • 1,398
  • 13
  • 30

1 Answers1

0

Can't you call that method in the viewDidDisappear: method ?

iSofTom
  • 1,718
  • 11
  • 15