iDevelopper / PBRevealViewController

A UIViewController subclass for revealing a left and/or right view controller above or below a main view controller.
MIT License
80 stars 16 forks source link

Dismiss left view #78

Closed justdan0227 closed 4 years ago

justdan0227 commented 4 years ago

Sorry.. I'm not seeing what I call in my menuViewController (left) to dismiss the menu (when you select a menu option that does not do any replacing or segeues, just want it to dismiss the menu animated).

iDevelopper commented 4 years ago
revealViewController.revealLeftView()

will close the left menu if it is open.

Or:

revealViewController.hideLeftView(animated: true)
justdan0227 commented 4 years ago

Thanks! I knew it would be simple!