I am using left side menu from this pod using storyboard. sidemenu is working fine in Swift 4.2 version pod. but I have updated pod in Swift 5 here I am not getting this menu in attribute inspector to give left side menu on,
in Swift 5 pod 'SideMenu', '~> 6.0'
I am getting full menu from below, I am not getting left side menu.
that's why I am trying to add this code in appDelegate:
let leftMenuNavigationController = SideMenuNavigationController(rootViewController: YourViewController)
SideMenuManager.default.leftMenuNavigationController = leftMenuNavigationController
but here what should I write in YourViewController
place
in console I am getting like below:
Failed to set (leftSide) user defined inspected property on (UINavigationController): [ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key leftSide.
This is small demo project you can find pod installing and error here github project
I need side menu like this.. I use to get like this in Swift 4 pod
How do I add left side menu in updated version?