What's the height of a UITabBar on iOS 8, iOS 9, iOS 10, and iOS 11?

折月煮酒 提交于 2019-11-28 18:23:45

问题


The height of the UITabBar seems to have changed between iOS 7 and 8/9/10/11. I'm posting this question for others to easily find the answer.

So: What's the height of a UITabBar on iOS 8/9/10/11 on iPhone and iPad?


回答1:


For iOS 8, 9, and 10 the height is 49 points, both on iPad and iPhone and both in portrait and landscape. It used to be 56 points on iOS 7.

For iOS 11, things get a bit more complicated:

In portrait and regular landscape, the height is still 49 points. In compact landscape, the height is now 32 points.

On iPhone X, the height is 83 points in portrait and 53 points in landscape.




回答2:


iOS 9 and iOS 10 still uses 49 points for the Tab Bar (and 64 points for a navigation bar) Thanks for the self Q/A, was actually helpful to conform what I had on storyboard.




回答3:


I would recommend just calculating it using TabBar.Height - UIApplication.SharedApplication.KeyWindow.SafeAreaInsets.Bottom. Check for system version >= 11 first.



来源:https://stackoverflow.com/questions/25550831/whats-the-height-of-a-uitabbar-on-ios-8-ios-9-ios-10-and-ios-11

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!