react-native-navigation的迁移库

RNNRootViewCreator.h 342B

123456789101112131415
  1. #import <UIKit/UIKit.h>
  2. #import "RNNComponentOptions.h"
  3. @protocol RNNRootViewCreator
  4. - (UIView*)createRootView:(NSString*)name rootViewId:(NSString*)rootViewId;
  5. - (UIView*)createRootViewFromComponentOptions:(RNNComponentOptions*)componentOptions;
  6. - (UIView*)createCustomReactView:(NSString*)name rootViewId:(NSString*)rootViewId;
  7. @end