react-native-navigation的迁移库

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