Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 840 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 840 Bytes

eGo-CMS

Side menu App

Pretty simple iOS side menu application with pan, tap gesture supported. Also resistant to orientation changes.

How to use?

To show default side menu just call:

PresentViewController(SideMenuManager.Instance.MenuController as UIViewController, true, null);

To hide:

DismissViewController(true, null);

You can add your UIViewController as menu:

SideMenuManager.Instance.MenuController = new MySideNavigationMenuController();

Surely, MySideNavigationMenuController must implement ISideMenuNavigationController interface.

That's all, folks! 🐷