StoryBoard click here This is the print of my storyboard
I'm constructing a side menu with SWRevealViewController, but it doesn't work in my main view that is after the login scene, I connect the SWRevealViewController view with the login and the menu, I also tried to create a segue with the main view but nothing happens.
I implemented the code
if self.revealViewController() != nil {
menuBtn.target = self.revealViewController()
menuBtn.action = #selector(SWRevealViewController.revealToggle(_:))
self.view.addGestureRecognizer(self.revealViewController().panGestureRecognizer())
}
in the mainviewcontroller and the button doesnt work.
Found the solution, i had to do the segue of login to mainview in this way: