I'm trying to show the ToolBar of the navigationcontroller after pushing from a Objective C Class to a Swift Class by using this code, but the toolbar is not shown:
self.navigationController?.setToolbarHidden(false, animated: false)
Then I did a print of self.navigationController? and it returned nil.
If I go from Obj-C to Obj-C the navigationController is found.
Any solutions?