Simple question: How can I increase the height of the navigation bar so that additional widgets will fit in there while keeping the blur?
Examples are the Calendar app where weekday abbreviations are added to the bottom of the navigation bar...
...and in Mail when you move the mail to a different folder:
Create a UINavigationBar Category with a custom sizeThatFits.
As iAnurag post ans is correct but still have some ui problem (Width is not proper)
You can change size by adding category like below
Sample Project
Download
Code
Output
When press on "Button"
Problem in iAnurag Code
https://developer.apple.com/library/prerelease/content/samplecode/NavBar/Introduction/Intro.html
From ReadMe.md:
My not humble opinion: Don't override
sizeThatFits(_:)
, don't set constraints on nav bar height. Just do the illusion from example above.