react-native-navigation的迁移库

RNNNavigationStackManager.h 409B

123456789101112131415
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNStore.h"
  4. @interface RNNNavigationStackManager : NSObject
  5. -(instancetype)initWithStore:(RNNStore*)store;
  6. -(void)push:(UIViewController*)newTop onTop:(NSString*)containerId;
  7. -(void)pop:(NSString*)containerId;
  8. -(void)popTo:(NSString*)toContainerId fromContainerId:(NSString*)fromContainerId;
  9. -(void)popToRoot:(NSString*)containerId;
  10. @end