3

How can I deduce the information if the keyboard is visible while device orientation is changed? Does this information is sent inside - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)iFromInterfaceOrientation method?

swiftBoy
  • 35,607
  • 26
  • 136
  • 135
Abhinav
  • 37,684
  • 43
  • 191
  • 309

1 Answers1

2

Nope, you will have to subscribe to some notification and keep the info somewhere.

Have a look at

UIKeyboardWillShowNotification
UIKeyboardDidShowNotification
UIKeyboardWillHideNotification
UIKeyboardDidHideNotification
VdesmedT
  • 9,037
  • 3
  • 34
  • 50