I am using story board to create navigation bar.
My requirement is to hide the status bar and increase the height of Navigation bar. When i hide the status bar, the navigation bar sticks to top and the height is 44 px. i need a navigation bar height as 64 px (44px+status bar height). Is there any way to do this?
With status bar
Without status bar
To start off, you hide your
statusBar
by following these steps:First, put this code in
viewWillAppear
:Second, set your
info.plist
file as the below image shows:Next, you can make a
Category
ofUINavigationBar
and in it set the height of thenavigaionBar
.Objective-c
in .h file
and in .m file
Swift