react-native-navigation的迁移库

RNNStore.h 420B

123456789101112131415
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. @interface RNNStore : NSObject
  4. @property (nonatomic, strong) NSMutableArray *modalsToDismissArray;
  5. @property (atomic) BOOL isReadyToReceiveCommands;
  6. - (UIViewController*)findContainerForId:(NSString*)containerId;
  7. - (void)setContainer:(UIViewController*)viewController containerId:(NSString*)containerId;
  8. - (void)removeContainer:(NSString*)containerId;
  9. @end