Pretty simple iOS side menu application with pan, tap gesture supported. Also resistant to orientation changes.
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! 🐷