Side menu not working in Xcode 11.3.1,App will be crashed when i click on side menu
Closed this issue · 2 comments
Side menu was working fine before Xcode 11 updated (Side menu width = 240 Fix) But after the Xcode 11 update side menu shows to full screen.So how can i handle it in Xcode 11 Or Above
Now I have updated Xcode 11.3.1 And now I Reinstall Side menu pod 'SideMenu', '~> 6.0' But when i click on side menu then my app will crashed And display found error like ...."Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value: file /Users/applecustomer/Desktop/Projects/iOSReAnalyse/Development/iOSReAnalyse/Pods/SideMenu/Pod/Classes/SideMenuAnimationController.swift, line 136"
Here,In SideMenuAnimationController.swift file on 136 line have an issue. So what can i do in this situation.Sidemenu library Not support in Xcode 11.3.1??
func transitionWillBegin(presenting: Bool) {
// prevent any other menu gestures from firing
containerView?.isUserInteractionEnabled = false
if presenting {
presentationController.presentationTransitionWillBegin()
} else {
presentationController.dismissalTransitionWillBegin() // (Crash line 136)
}
}
You need to reproduce this in the demo project which is working as expected; otherwise I'm inclined to believe that there is something atypical with your project causing this issue.