react-native-navigation的迁移库

RNNReactRootViewCreator.m 532B

1234567891011121314151617181920212223242526
  1. //
  2. // RNNReactRootViewCreator.m
  3. // ReactNativeNavigation
  4. //
  5. // Created by Ran Greenberg on 08/02/2017.
  6. // Copyright © 2017 Wix. All rights reserved.
  7. //
  8. #import "RNNReactRootViewCreator.h"
  9. #import "RNN.h"
  10. #import "RCTRootView.h"
  11. @implementation RNNReactRootViewCreator
  12. - (UIView*)createRootView:(NSString*)name rootViewId:(NSString*)rootViewId
  13. {
  14. UIView *view = [[RCTRootView alloc] initWithBridge:[RNN instance].bridge
  15. moduleName:name
  16. initialProperties:@{@"id": rootViewId}];
  17. return view;
  18. }
  19. @end