Open
Description
When I create my menu item controllers, I embed them in navigation controllers.
e.g.
let text = TextViewController(textView: TextView.init(frame: UIScreen.main.bounds), pageID: page.pageid) let navigationController = UINavigationController(rootViewController: text) contentList.append(navigationController)
Issue is when I click one of these items, it loads, but the status bar vanishes and just leaves a black box.
How can i get the behaviour to work as expected and retain the status bar which then takes on the background colour of the navigation bar, as it would do outside of the side menu encapsulation