如何让 UINavigationBar 变“薄”?

发布于 2024-08-10 20:29:55 字数 71 浏览 2 评论 0原文

在某些地方(例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久而酒知 2024-08-17 20:29:55

这是默认行为。是什么让您认为您没有在自己的应用程序中获得此功能?您只需要

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

在视图控制器中重写并在所有情况下返回 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

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文