react-native-navigation的迁移库

RNNStore.h 444B

1234567891011121314151617181920
  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. - (UIViewController*)findContainerForId:(NSString*)containerId;
  12. - (void)setContainer:(UIViewController*)viewController containerId:(NSString*)containerId;
  13. - (void)removeContainer:(NSString*)containerId;
  14. @end