react-native-navigation的迁移库

RNNStore.h 533B

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