react-native-navigation的迁移库

RNNStore.h 633B

1234567891011121314151617181920212223
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNRootViewController.h"
  4. @interface RNNStore : NSObject
  5. -(UIViewController*) findContainerForId:(NSString*)containerId;
  6. -(void) setContainer:(UIViewController*)viewController containerId:(NSString*)containerId;
  7. -(void) removeContainer:(NSString*)containerId;
  8. -(void) removeContainerByViewControllerInstance:(UIViewController*)containerInstance;
  9. -(NSString*)containerKeyForInstance:(UIViewController*)instance;
  10. -(void) setReadyToReceiveCommands:(BOOL)isReady;
  11. -(BOOL) isReadyToReceiveCommands;
  12. -(NSMutableArray*) pendingModalIdsToDismiss;
  13. -(void) clean;
  14. @end