Reputation: 4803
What is the UINavigatioBar height in following devices ? It increased in proportion of resolution or remain same as before ?
Thanks.
Upvotes: 0
Views: 313
Reputation: 746
You can get the height of the navigation bar by using
self.navigationController.navigationBar.frame.size.height
This'll give you for the different orientations the following point values (portrait/landscape):
Check this guide for a good overview on points and pixels in iOS.
Upvotes: 2
Reputation: 675
NavigationBar
height show below:
iPhone 6-> 88px
iPhone 6s->88px
iPhone 6 Plus->132px
iPhone 6s Plus->132px
Refer this link -> http://ivomynttinen.com/blog/the-ios-7-design-cheat-sheet/
Upvotes: 1