How to change status bar style - iOS 12

前端 未结 6 1796
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-29 04:04

I need to update status bar style on every view controller based on the background color (what UINavigationController is doing automatically).

Have trie

6条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-29 04:39

    If you're wrapped in a nav controller, you're going to need this:

    final class LightNavigationController: UINavigationController {
        override var preferredStatusBarStyle: UIStatusBarStyle {
            return .lightContent
        }
    }
    

提交回复
热议问题