Reputation: 4350
Is there a way I can make my UINavigationController height a certain size? I don't want it to take up the whole height? I would like to put a toolbar at the bottom. Or is there a preferred way to do this?
Upvotes: 0
Views: 164
Reputation: 13343
Your question doesn't make sense. A controller doesn't have a height.
You might be talking about the UINavigationBar
but it does not take the entire height if the screen.
And if you are using a UINavigationController
, then you also have a toolbar as a property all set up for you.
Just set the toolbarItems
property in your view controller.
Reference
Upvotes: 1
Reputation: 796
You can add the bottom toolbar as subview of the viewcontroller. There is no need for resizing
Upvotes: 1