How to change status bar style - iOS 12

前端 未结 6 1817
佛祖请我去吃肉
佛祖请我去吃肉 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:49

    override func viewDidLoad(){
        super.viewDidLoad()
    
        navigationController?.navigationBar.barStyle = .default
    }
    
    override var prefersStatusBarHidden: Bool {
        return true
    }
    

    I applied scroll view also in the same screen, by this code was able to resolve status bar issue.

提交回复
热议问题