I am presenting a modal and it used to go "under" the status bar pre - iOS 11.
I would like to get it to display like it did in iOS 10
All I was doing before was the following:
let vc = ReferralsViewController()
vc.modalPresentationStyle = .overCurrentContext
self.present(vc, animated: true, completion: nil)




