Use the increased navigation-bar title in iOS 11

前端 未结 6 769
再見小時候
再見小時候 2021-01-30 02:24

iOS 11 Beta 1 uses the increased navigation-bar title for almost all system-apps (it started doing this in iOS 10 and the Music app). I am wondering if Apple has a public API fo

6条回答
  •  既然无缘
    2021-01-30 02:39

    if #available(iOS 11.0, *) {
        navigationController?.navigationBar.prefersLargeTitles = true
        navigationController?.navigationBar.topItem?.title = "Hello"
        navigationController?.navigationItem.largeTitleDisplayMode = .automatic
    
        let attributes = [
            NSAttributedStringKey.foregroundColor : UIColor.red,
            ]
    
        navigationController?.navigationBar.largeTitleTextAttributes = attributes
    } else {
        // Fallback on earlier versions
    }
    

提交回复
热议问题