簡體   English   中英

NavigationBar 為一個 View 設置 TitleColor

[英]NavigationBar set TitleColor for one View

我面臨着快速設置一個 ViewController 標題的字體顏色並在它消失時重置它的問題。 目前我可以將顏色從黑色設置為白色:

override func viewDidLoad() {
  let textAttributes = [NSAttributedStringKey.foregroundColor:UIColor.white]
  navigationController?.navigationBar.titleTextAttributes = textAttributes
}


override func viewWillDisappear(_ animated: Bool) {
  let textAttributes = [NSAttributedStringKey.foregroundColor:UIColor.black]
  navigationController?.navigationBar.titleTextAttributes = textAttributes
}

當我嘗試用 UIColor.black 重置時,它不會改變任何東西。

當我嘗試設置整個外觀時,根本沒有任何變化。

override func viewDidLoad() {
  UINavigationBar.appearance().titleTextAttributes = [NSAttributedStringKey.foregroundColor : UIColor.white]
}


override func viewWillDisappear(_ animated: Bool) {
  UINavigationBar.appearance().titleTextAttributes = [NSAttributedStringKey.foregroundColor : UIColor.black]
}

我怎樣才能做到這一點? 使用 Xcode 10.0 Swift 4

不是將代碼添加到viewDidLoad() ,而是將其添加到viewDidAppear(_:) ,即

override func viewDidAppear(_ animated: Bool) {
    super.viewDidAppear(animated)
    let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.white]
    navigationController?.navigationBar.titleTextAttributes = textAttributes
}

override func viewWillDisappear(_ animated: Bool) {
    super.viewWillDisappear(animated)
    let textAttributes = [NSAttributedString.Key.foregroundColor:UIColor.black]
    navigationController?.navigationBar.titleTextAttributes = textAttributes
}

謝謝大家的幫助。

我用另一個功能讓它為我工作:

override func willMove(toParentViewController parent: UIViewController?) {
    var textAttributes: [NSAttributedString.Key : Any]?
    if parent == nil{ // navigating back
        textAttributes = [NSAttributedStringKey.foregroundColor:UIColor.black]
    }else{
         textAttributes = [NSAttributedStringKey.foregroundColor:UIColor.white]
    }
    navigationController?.navigationBar.titleTextAttributes = textAttributes
}

當視圖正在構建時也會調用此函數。 該解決方案對我有用,並且在顯示視圖時已經設置了顏色。
我對贊成/反對對此持開放態度。

您可以在任何視圖的代碼中使用此函數 viewWillAppear

func navigationBarProperties(vc:UIViewController, title:String){
 vc.navigationController!.navigationBar.isHidden = false
 vc.navigationController!.navigationBar.isTranslucent = false
 // text color
 vc.navigationController!.navigationBar.tintColor = UIColor.white
 // bar color
 vc.navigationController!.navigationBar.barTintColor = UIColor.black
 let isFont = UIFont.init(name: "Helvetica-bold", size: 15)
 vc.navigationItem.title = title
 vc.navigationController!.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor: #colorLiteral(red: 1, green: 1, blue: 1, alpha: 1) ,NSAttributedStringKey.font: isFont!]
}

override open func viewWillAppear(_ animated: Bool) {
 super.viewWillAppear(animated)
 //---nav bar customization----//
 navigationBarProperties(vc: self, title: "Home")
 }

子類UINavigationController並將其分配給您的 navigationController:

class CustomNavigationController : UINavigationController {

    let usualTextAttributes: [NSAttributedString.Key: Any] = [.foregroundColor: UIColor.red]
    let customTextAttributes: [NSAttributedString.Key: Any] = [.foregroundColor: UIColor.blue]

    private func updateTitleColorIfNeeded() {
        if topViewController is MyCustomViewController {
            navigationBar.titleTextAttributes = customTextAttributes
        } else {
            navigationBar.titleTextAttributes = usualTextAttributes
        }
    }

    override func popViewController(animated: Bool) -> UIViewController? {
        updateTitleColorIfNeeded()
        return super.popViewController(animated: animated)
    }

    override func pushViewController(_ viewController: UIViewController, animated: Bool) {
        updateTitleColorIfNeeded()
        super.pushViewController(viewController, animated: animated)
    }
}

如果MyCustomViewController是導航控制器的根,則在viewDidLoad設置它的初始標題顏色:

class MyCustomViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        navigationController?.navigationBar.titleTextAttributes = [.foregroundColor: UIColor.yellow]
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM