// // SlideNavigationController.h // SlideMenu // // Created by Aryan Gh on 4/24/13. // Copyright (c) 2013 Aryan Ghassemi. All rights reserved. // #import @protocol SlideNavigationControllerDelegate @optional - (BOOL)slideNavigationControllerShouldSisplayRightMenu; - (BOOL)slideNavigationControllerShouldSisplayLeftMenu; @end @interface SlideNavigationController : UINavigationController @property (nonatomic, strong) UIViewController *righMenu; @property (nonatomic, strong) UIViewController *leftMenu; + (SlideNavigationController *)sharedInstance; - (void)switchViewController:(UIViewController *)viewController withCompletion:(void (^)())completion; @end