When I want resize an UIViewController in a storyboard editor window I do:
- I put size to “freeForm” in the UIViewController attributes inspector
- I select the view and resize her with the size inspector
after that, the uiViewController is resized in storyboard window.
Next, I select the view controller, click on: edit > embeded in> Navigation Controller and the problem is that navigation controller is in full size and not the same size that UIViewController. I don’t find how resize this navigation controller.
You don’t resize a NavigationController – it is not a ViewController. It controls the navigation of ViewControllers. You specify an initial ViewController (the one you embedded into it will be the initial viewController by default). You then create segues into other ViewControllers.