react-native-navigation的迁移库

RNNRootViewCreator.h 256B

12345678910111213
  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. @end