1234567891011121314151617181920212223242526272829303132333435363738 |
-
- #import "RNNReactRootViewCreator.h"
- #import <React/RCTRootView.h>
-
- @interface RNNReactRootView : RCTRootView
-
- @end
-
- @implementation RNNReactRootView
-
- @end
-
- @implementation RNNReactRootViewCreator {
- RCTBridge *_bridge;
- }
-
- -(instancetype)initWithBridge:(RCTBridge*)bridge {
- self = [super init];
-
- _bridge = bridge;
-
- return self;
-
- }
-
- - (UIView*)createRootView:(NSString*)name rootViewId:(NSString*)rootViewId {
- if (!rootViewId) {
- @throw [NSException exceptionWithName:@"MissingViewId" reason:@"Missing view id" userInfo:nil];
- }
-
- UIView *view = [[RNNReactRootView alloc] initWithBridge:_bridge
- moduleName:name
- initialProperties:@{@"containerId": rootViewId}];
- return view;
- }
-
- @end
|