Use the increased navigation-bar title in iOS 11

前端 未结 6 725
再見小時候
再見小時候 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:57

    Since large titles are available since iOS 11 you also have to check for iOS version:

    if #available(iOS 11.0, *) {
        navigationController?.navigationBar.prefersLargeTitles = true
    }
    

提交回复
热议问题