Navigation Bar Title Font Size

后端 未结 5 1515
栀梦
栀梦 2020-12-10 03:38

I need to change the size of the Navigation Bar title text for one view controller in my iPhone app. I\'m using iOS5, and tried the following code:

if ([self         


        
5条回答
  •  Happy的楠姐
    2020-12-10 04:15

    My example

    guard let sansLightFont = UIFont(name: "OpenSans", size: 20) else { return }
    navigationController?.navigationBar.titleTextAttributes = [NSFontAttributeName : sansLightFont]
    

提交回复
热议问题