pod 'SWRevealViewController', '~> 2.3'
- Set up a
SWRevealViewControlleras the parent VC - Custom
reveal setsegue to menu with idsw_rear - Custom
reveal setsegue to main view with idsw_front
import SWRevealViewControllerThen in viewDidLoad:
// Set up the menu
if let reveal_vc = self.revealViewController() {
self.menuButton.addTarget(reveal_vc, action: #selector(SWRevealViewController.revealToggle(_:)), for: .touchUpInside)
}