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