react-native-navigation的迁移库

RNNStore.h 599B

12345678910111213141516171819202122
  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. -(NSString*)containerKeyForInstance:(UIViewController*)instance;
  9. -(void) setReadyToReceiveCommands:(BOOL)isReady;
  10. -(BOOL) isReadyToReceiveCommands;
  11. -(NSMutableArray*) pendingModalIdsToDismiss;
  12. -(void) clean;
  13. @end