更改 UINavigationController 标题的字体
我可以更改 UINavigationController 的字体吗? --> 标题
Can I change the font of my UINavigationController? --> title
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以更改 UINavigationController 的字体吗? --> 标题
Can I change the font of my UINavigationController? --> title
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
从 iOS 5 开始,您可以通过外观代理更改字体。
https://developer.apple.com/documentation/uikit/uiappearance
以下内容将设置所有 UINavigationController 的标题字体。
要设置后退按钮的字体,请执行以下操作:
要设置 iOS 11+ 中可用的大标题的字体,请执行以下操作:
As of iOS 5 you can change the font via the appearance proxy.
https://developer.apple.com/documentation/uikit/uiappearance
The following will set the title font for all UINavigationControllers.
To set the font for the back button, do this:
To set the font for the large titles available in iOS 11+, do this:
对于 iOS8+,您可以使用:
Swift:
for iOS8+ you can use:
Swift:
标题视图可以是任何视图。因此,只需创建一个 UILabel 或其他更改字体的内容并将新视图分配给导航项的 title 属性即可。
The title view can be any view. So just create a UILabel or something else where you change the font and assign that new view to the title property of the navigation item.
一个例子:
An example:
@morgancodes 的答案将为所有
UINavigationController
标题设置字体。我已经将其更新为 Swift 4:The answer from @morgancodes will set the font for all
UINavigationController
titles. I've updated it for Swift 4: