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?
Asked
Active
Viewed 155 times
1 Answers
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