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?
+1
A:
Nope, you will have to subscribe to some notification and keep the info somewhere.
Have a look at
UIKeyboardWillShowNotification
UIKeyboardDidShowNotification
UIKeyboardWillHideNotification
UIKeyboardDidHideNotification
VdesmedT
2010-10-08 19:24:43
Alright. Thank you.
Abhinav
2010-10-08 22:39:50