react-native-navigation的迁移库

RNNStore.h 493B

12345678910111213141516171819202122
  1. //
  2. // RNNStore.h
  3. // ReactNativeNavigation
  4. //
  5. // Created by Ran Greenberg on 12/02/2017.
  6. // Copyright © 2017 Wix. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface RNNStore : NSObject
  11. @property NSMutableArray *modalsToDismissArray;
  12. - (UIViewController*)findContainerForId:(NSString*)containerId;
  13. - (void)setContainer:(UIViewController*)viewController containerId:(NSString*)containerId;
  14. - (void)removeContainer:(NSString*)containerId;
  15. @end