I created an iPad app containing a popover view built into the navigation controller. I like to use the Storyboard as much as possible, and installing "Use Explicit Size"in Xcode gives me the correct size of my popover on the iPad. But it does not resize the view UINavigationControllerand its built-in UIViewControllerswhen viewing the storyboard in Xcode.
This is pretty annoying as the size of my view in Xcode does not match the actual size of the popover.
So my problem is not setting the correct popover size (I also know that I can do this with code), but I want the views in the storyboard to display the actual size of my views.
What is the correct way to create viewControllers built into the navigation controller using storyboards?
audub source
share