I am using SideMenu pod. While the app is functioning normally I am getting an error of
Failed to set (leftSide) user defined inspected property on (UINavigationController): [<UINavigationController 0x7fa9f7816000> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key leftSide.
In the attribute inspector, I have leftNav set to ON. I am not sure what am I missing here, or what to do with the leftNav key. I do not have any unwanted connections.
private func setupSideMenu() {
let lnav = storyboard?.instantiateViewController(withIdentifier: "LeftMenuNavigationController") as? SideMenuNavigationController
// I set it a second time. lnav?.leftSide = true
lnav?.leftSide = true
lnav?.statusBarEndAlpha = 0
lnav?.presentationStyle = .viewSlideOutMenuIn
lnav?.presentationStyle.backgroundColor = .white
lnav?.presentationStyle.presentingEndAlpha = 0.5
// Define the menus
SideMenuManager.default.leftMenuNavigationController = lnav
SideMenuManager.default.rightMenuNavigationController = nil
SideMenuManager.default.addPanGestureToPresent(toView: navigationController!.navigationBar)
SideMenuManager.default.addScreenEdgePanGesturesToPresent(toView: view, forMenu: .left)
}