I'm displaying a popover in iPad with a UINavigation bar. On the second view, I have a UISearchController that can display a keyboard. The keyboard pushes the popover up, which is fine, however if I now push the 'back' button on the UINavigation bar it dismisses the keyboard which is fine, but the popover doesn't slide back down to its original position. Anyone know how to fix that? Thanks!
|
feedback
|
|
Ok so I actually figured out (I believe) what your question was asking...and just in case anyone stumbles upon this from google, I figured I'd answer how I did it. It feels like a hack job but I haven't been able to find any other way to do it. In the controller that brings up the keyboard,I had it post a notification whenever the keyboard dismisses:
Then back on my home screen controller, that controls the UIPopover, I added a listener:
inside the init. Be sure to remember to remove the listener in your dealloc for good programming practice:
So then whenever I get notification that the keyboard disappears, I get a reference to the button that the popover shows up from, and just have it re-appear directly from it:
} I haven't added any checks for which popup it is, but I can easily do that if I have more than 1 type of popover / button that it would appear from. But that's the basic premise that you can go from. Hope it helps! | ||||
|
feedback
|
|
You could also register for the UIKeyboardDidHideNotification somewhere in the initializer.
This code moves the popover back:
I didn't get it working without the delays, but this seems to be acceptable for my current project. Hope it helps someone. | |||
|
feedback
|
|
After you press Back button you should manually call resignFirstResponder for search field (for example inside viewDidDisappear). this should help. But the issue still will be reproduced under iOS-4 when device is in Landscape orientation with Home button on the left side :-) | |||
|
feedback
|