iOS change navigation bar title font and color

后端 未结 18 780
青春惊慌失措
青春惊慌失措 2020-12-04 08:40

So i have this code that should change the nav bar title font, but it doenst

    NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIFon         


        
18条回答
  •  情书的邮戳
    2020-12-04 09:13

    This one for alternative to Swift 4 (already answer by @Josh):

    let titleTextAttributed: [NSAttributedStringKey: Any] = [.foregroundColor: UIColor.red, .font: UIFont(name: "AvenirNext-Regular", size: 20) as Any]
    navigationController?.navigationBar.titleTextAttributes = titleTextAttributed
    

提交回复
热议问题