This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/Navigator/DoricNavigatorProtocol.h

11 lines
242 B
C
Raw Normal View History

2019-11-23 17:14:50 +08:00
//
// Created by pengfei.zhou on 2019/11/23.
//
#import <Foundation/Foundation.h>
@protocol DoricNavigatorProtocol <NSObject>
- (void)push:(NSString *)scheme alias:(NSString *)alias animated:(BOOL)animated;
2019-11-23 17:14:50 +08:00
- (void)pop:(BOOL)animated;
2019-11-23 17:14:50 +08:00
@end