I have read the guidelines for contributing and I understand
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
i am use this for present side menu in old version of iOS
let vc = UIStoryboard.init(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "RightSideMenuShow") as! UINavigationController
self.present(vc, animated: true , completion: nil)
now this code not working with me in iOS 13 ... the Menu is show over background View not from Side right or left.
Change the UINavgationController to SideMenuNavigationController in the storyboard
and try the following code
let VC = storyboard?.instantiateViewController(withIdentifier: "RightSideMenuShow") as! SideMenuNavigationController
VC.presentationStyle = .viewSlideOutMenuIn //Change it to whatever you want
VC.presentingViewControllerUserInteractionEnabled = false
SideMenuManager.default.leftMenuNavigationController = VC
present(SideMenuManager.default.leftMenuNavigationController!, animated: true, completion: nil)
Hope it is helpful ..
it working .... thank you