How do i change navigationBar font in Swift?

前端 未结 9 1271
伪装坚强ぢ
伪装坚强ぢ 2020-12-23 20:16

How do I change the NavigationBar font in Swift?

This is what I have tried so far, but receiving an error (I have correctly implemented CaviarDreams

9条回答
  •  粉色の甜心
    2020-12-23 21:09

    Swift 4.2

    Change Large Title

    self.navigationController!.navigationBar.largeTitleTextAttributes = [.font: UIFont.systemFont(ofSize: 22)]
    

    Change Small Title when layout scrolled down

    self.navigationController!.navigationBar.titleTextAttributes = [.font: UIFont.systemFont(ofSize: 14)]
    

提交回复
热议问题