我有一个要求,我必须使用带有红色大标题的UINavigationBar
。
目前,我有以下代码:
func prepareNavigationController() {
let navController = UINavigationController(rootViewController: self)
navController.navigationBar.prefersLargeTitles = true
navigationItem.searchController = UISearchController(searchResultsController: nil)
navigationItem.hidesSearchBarWhenScrolling = false
navController.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor.rawValue: UIColor.red]
}
但它实际上并没有将标题标签染成红色。这是结果:
但是将prefersLargeTitles
更改为false是正确的,我的标题是红色的。
navController.navigationBar.prefersLargeTitles = false
我不完全确定这是否是一个错误,因为在撰写本文时我们仍然处于第一个测试阶段,或者这是故意的行为,主要是因为我没有任何Apple的?应用程序之前为大型标题着色。有没有办法真正让大标题有我想要的任何颜色?
答案 0 :(得分:48)
有一个新的UINavigationBar属性“largeTitleTextAttribute”可以帮助解决这个问题。
以下是可添加到视图控制器viewDidLoad方法的示例代码
navigationController?.navigationBar.largeTitleTextAttributes = [NSAttributedStringKey.foregroundColor: UIColor.blue]
以下是没有设置largeTitleTextAttributes的示例代码和屏幕截图,但barStyle设置为.black
navigationController?.navigationBar.barStyle = .black
这是没有设置largeTitleTextAttributes的屏幕截图,但barStyle设置为.default
navigationController?.navigationBar.barStyle = .default
答案 1 :(得分:5)
不确定它是否是测试版1& 2,但这里是一种设置颜色的方法。这是一个" hacky"解决方法,但它应该工作,直到Apple修复此问题。在Objective-C和Swift版本中,此代码都采用viewDidAppear:
方法。
目标-C:
dispatch_async(dispatch_get_main_queue(), ^{
for (UIView *view in self.navigationController.navigationBar.subviews) {
NSArray <__kindof UIView *> *subviews = view.subviews;
if (subviews.count > 0) {
UILabel *label = subviews[0];
if (label.class == [UILabel class]) {
[label setTextColor:[UIColor redColor]];
}
}
}
});
夫特:
DispatchQueue.main.async {
for view in self.navigationController?.navigationBar.subviews ?? [] {
let subviews = view.subviews
if subviews.count > 0, let label = subviews[0] as? UILabel {
label.textColor = UIColor.red
} } }
答案 2 :(得分:2)
您在iOS 13中执行此操作的方式已更改,现在您可以像这样使用UINavigationBarAppearance
类…
let appearance = UINavigationBarAppearance(idiom: .phone)
appearance.largeTitleTextAttributes = [.foregroundColor: UIColor.systemRed]
appearance.titleTextAttributes = [.foregroundColor: UIColor.systemRed]
appearance.backgroundColor = .white
navigationItem.standardAppearance = appearance
navigationItem.scrollEdgeAppearance = appearance
答案 3 :(得分:0)
这是使用大型游戏的工作代码,并将iOS11 +和旧iOS版本的小型和大型游戏的文字颜色设置为白色。
// Will apply to versions before iOS 11
navigationController?.navigationBar.titleTextAttributes = [
NSAttributedStringKey.foregroundColor: UIColor.white
]
if #available(iOS 11.0, *) {
navigationController?.navigationBar.prefersLargeTitles = true
navigationController?.navigationBar.largeTitleTextAttributes = [
NSAttributedStringKey.foregroundColor: UIColor.white
]
}
(以前在Xcode中有一个错误,但现在似乎已修复)
答案 4 :(得分:0)
答案 5 :(得分:0)
在 iOS 13和Swift 5
您可以使用titleTextAttributes属性来自定义导航栏的字体,颜色和大小。
let attributes = [
NSAttributedString.Key.foregroundColor: UIColor.white,
NSAttributedString.Key.font: UIFont(name: "Georgia-Bold", size: 24)!
]
UINavigationBar.appearance().titleTextAttributes = attributes