MFMailComposeViewController in iOS 7 statusbar are black

前端 未结 13 796
不知归路
不知归路 2020-12-04 23:20

i have a feedback button in my ios 7 application with MFMailComposeViewController. After the user click this button the mailcomposer open but the statusbar changed to black.

13条回答
  •  天命终不由人
    2020-12-04 23:51

    The easiest swift 3 solution for me was:

    extension MFMailComposeViewController {
    
        open override func viewDidAppear(_ animated: Bool) {
            super.viewDidAppear(animated)
    
            UIApplication.shared.statusBarStyle = .lightContent
        }
    }
    

提交回复
热议问题