Sidemenu: New Presentation Of iOS 13 Inconsistent with default present of SideMenu ?!

Created on 6 Oct 2019  路  3Comments  路  Source: jonkykong/SideMenu

I have read the guidelines for contributing and I understand

  • [ ] My issue is happening in the latest version of SideMenu (older versions are no longer maintained).
  • [ ] My issue was not solved in the README.
  • [ ] My issue can not be answered on stackoverflow.com.
  • [ ] My issue is not a request for new functionality that I am unwilling to build and contribute with a pull request.
  • [ ] My issue is reproducible in the demo project.

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

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.

Bug - Help Wanted!

All 3 comments

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

Was this page helpful?
0 / 5 - 0 ratings