SlideMenuControllerSwift
SlideMenuControllerSwift copied to clipboard
PushViewController Not Working in iOS11
I'm using Latest (3.0.2) Version of SlideMenuControllerSwift
.
My Problem is that code is working perfect till iOS 10.3 but when i tested for iOS 11 in Xcode9 With Simulator
method self.navigationViewController?.pushViewController
is not working. View is not getting displayed.
I already Checked if navigationController is available or not but it is ok
I've the same problem, doesnt seem to be related to this control but uinavigationcontroller in general.
Same problem guys. Any helpful thing anyone got?
same problem here
Same here. Works on simulator 11.2 but not on real device 11.0
try this code:
let storyBoard: UIStoryboard = UIStoryboard(name: "Profile", bundle: nil) let vc = storyBoard.instantiateViewController(withIdentifier: "profile")
if let nav = self.slideMenuController()?.mainViewController as? UINavigationController { nav.pushViewController(vc, animated: true) }