|
//
// MLNavigationController.h
// MultiLayerNavigation
//
// Created by Feather Chan on 13-4-12.
// Copyright (c) 2013年 Feather Chan. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface MLNavigationController : UINavigationController <UIGestureRecognizerDelegate>
// Enable the drag to back interaction, Defalt is YES.
@property (nonatomic,assign) BOOL canDragBack;
- (void)pushOrPopWithPushData:(remotePushBO*)pushBO;
- (void)pushViewControllerWithAnimateFlip:(UIViewController *)viewController;
- (void)popViewControllerWithFlip;
- (void)pushViewControllerWithAnimatePush:(UIViewController *)viewController;
- (void)popViewControllerWithPush;
@end
|