ソースを参照

exposed bridge in ReactNativeNavigation

yogevbd 6 年 前
コミット
ee48da2e7c
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      lib/ios/RNNControllerFactory.m

+ 1
- 1
lib/ios/RNNControllerFactory.m ファイルの表示

@@ -97,7 +97,7 @@
97 97
 	RNNRootViewController* component = [[RNNRootViewController alloc] initWithName:name withOptions:options withComponentId:componentId rootViewCreator:_creator eventEmitter:_eventEmitter isExternalComponent:NO];
98 98
 	if (!component.isCustomViewController) {
99 99
 		CGSize availableSize = UIApplication.sharedApplication.delegate.window.bounds.size;
100
-		[_bridge.uiManager setAvailableSize:availableSize forRootView:component.view];
100
+		[_bridge.uiManager setAvailableSize:availableSize forRootView:component.reactView];
101 101
 	}
102 102
 	return component;
103 103
 }