react-native-navigation的迁移库

RNNComponentViewController+Utils.m 442B

123456789101112
  1. #import "RNNComponentViewController+Utils.h"
  2. @implementation RNNComponentViewController (Utils)
  3. + (RNNComponentViewController *)createWithComponentId:(NSString *)componentId {
  4. RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] init];
  5. layoutInfo.componentId = componentId;
  6. return [[RNNComponentViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:nil eventEmitter:nil presenter:nil options:nil defaultOptions:nil];
  7. }
  8. @end