Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您将手机水平转动时,有人可以告诉我 iPhone navBar 的像素高度吗?
我知道这是一个基本问题,但我找不到答案。
谢谢你。
在处理 UI 大小调整时,您不应该依赖硬编码值。尤其是现在 [大型 iPod 型设备] 即将推出。
您可以通过查询其框架来获取条形的高度。
类似于:
navigationController.navigationBar.frame.size.height;
将返回栏的高度。