本文介绍了更改iOS 11大标题颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在iOS 11中使用新的放大导航栏标题。但我似乎无法更改textColor。
I'm using the new enlarged navigation bar titles in iOS 11. But I can't seem to be able to change the textColor.
我尝试过:
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor]};
这没有做任何事情。有什么想法吗?
This didn't do anything. Any ideas?
推荐答案
self.navigationController.navigationBar.largeTitleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor]};
这篇关于更改iOS 11大标题颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!