I am working on a universal application using storyboards, and I added the UISearchBar and UISearchDisplayController to one of my table views. I plugged it all in and you can search in order. The problem is that I push the new view controller onto the navigation stack. On the iPhone, this is fine, but on the iPad it causes the shifted view controller to shift under the navigation bar (I had to manually make the navigation bar again so you can return).
Then, when you go back to the original view of the table in which the search was performed, the search is still active, but the UISearchBar now hiding behind the navigation bar, which means that there is no way to reject it without deleting the query. It also means that it is no longer in use, since you cannot return to it.
Probably best illustrated with some screenshots.
Here's what it looks like when you first open the table:

Then search in order:

Going to the next screen, we can see the problem:

And then again on the home screen, continuing to search, but not the search box:

Then, if I remove everything from the search box and get rid of the overlay, I can see the search box when I look at the table view, but I can never reach it. I can't get a reliable screen capture, though.
I searched everywhere for a solution, but could not find it. I tried calling [self setNeedsDisplay] and [self setNeedsLayout] in the viewDidAppear method, but this seems to have no effect. It seems that he will correct himself if I change the orientation of the device, and I tried to reproduce what he would do in this situation by calling these methods.
IPad storyboard structure: SplitViewController → Navigation Controller → UITabBarController → UITableViewController (contains UISearchBar , etc.) → UITableViewController