我在iOS 11中使用新的擴大導航欄標題。但我似乎無法更改textColor。更改iOS 11大標題顏色
我試着這樣做:
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor]};
這並沒有做任何事情。有任何想法嗎?
我在iOS 11中使用新的擴大導航欄標題。但我似乎無法更改textColor。更改iOS 11大標題顏色
我試着這樣做:
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor]};
這並沒有做任何事情。有任何想法嗎?
self.navigationController.navigationBar.largeTitleTextAttributes = @{NSForegroundColorAttributeName: [UIColor whiteColor]};
不適合我:( –
我認爲它還是在Xcode 9測試版中的錯誤6.
我發現不同的「解決方案」爲它:
if #available(iOS 11.0, *) { UINavigationBar.appearance().largeTitleTextAttributes = [NSAttributedStringKey.foregroundColor: UIColor.blue] }
if #available(iOS 11.0, *) { self.navigationController?.navigationBar.largeTitleTextAttributes = [NSAttributedStringKey.foregroundColor: UIColor.blue, NSAttributedStringKey.font: UIFont.systemFont(ofSize: 31, weight: UIFont.Weight.bold) ] }
希望它可以幫助你。
問候!
如果#available(iOS 11.0,*)找不到! –
你是否使用Xcode 9? –
是的,任何Xcode 9解決方案? –
[PrefersLargeTitles]設置爲true時更改導航欄標題的文本顏色的可能副本(https://stackoverflow.com/questions/44619396/changing-the-text-color-of-a-導航欄 - 標題 - 當 - preferslargetitles-is-s) – Kqtr
有用於在Xcode中的錯誤,但它現在工作。完整的工作代碼在這裏:https://stackoverflow.com/a/48598246/7698127(這裏沒有發佈答案,以避免重複的答案) – Kqtr