gpt4 book ai didi

ios - 更改导航栏标题字体 - swift

转载 作者:IT王子 更新时间:2023-10-29 05:03:30 32 4
gpt4 key购买 nike

我的导航栏中有一个标题,我想将其更改为自定义字体。我找到了这行代码,但它适用于具有导航 Controller 的情况。

self.navigationController?.navigationBar.titleTextAttributes = [ NSFontAttributeName: UIFont(name: "LeagueGothic-Regular", size: 16.0)!, 
NSForegroundColorAttributeName: UIColor.whiteColor()]

但是我没有任何导航 Controller 。我手动将导航栏添加到我的 View 中。

enter image description here

enter image description here

如何更改评论字体?

最佳答案

试试这个:

objective-C

[[UINavigationBar appearance] setTitleTextAttributes:attrsDictionary];

swift 3

self.navigationController.navigationBar.titleTextAttributes = [NSFontAttributeName: UIFont(name: "CaviarDreams", size: 20)!]

swift 4

self.navigationController.navigationBar.titleTextAttributes = [NSAttributedStringKey.font: UIFont(name: "CaviarDreams", size: 20)!]

关于ios - 更改导航栏标题字体 - swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39438606/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com