如何让 UINavigationBar 变“薄”?
在某些地方(例如 Mail.app),顶部导航栏在横向模式下比纵向模式下更细。有谁知道我如何在我自己的应用程序中获得这样的东西?
In certain places such as Mail.app, the top navigation bar is thinner in landscape mode than in portrait mode. Does anyone know how I could get something like this in my own app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是默认行为。是什么让您认为您没有在自己的应用程序中获得此功能?您只需要
在视图控制器中重写并在所有情况下返回 YES 即可。默认情况下,顶部的导航栏(假设您使用的是 UINavigationController)横向显示比纵向显示更薄。
This is the default behavior. What makes you think you're not getting this in your own app? You just need to override
in your view controller and return YES in all cases. The navigation bar (assuming you're using a UINavigationController) at the top will be thinner in landscape than in portrait by default.