ソースを参照

fix(iOS): WebProcessProxy crash

sunzhongliang 4 年 前
コミット
4f98c0bebc
共有1 個のファイルを変更した5 個の追加0 個の削除を含む
  1. 5
    0
      ios/RNCWebViewManager.m

+ 5
- 0
ios/RNCWebViewManager.m ファイルの表示

@@ -222,4 +222,9 @@ RCT_EXPORT_METHOD(startLoadWithResult:(BOOL)result lockIdentifier:(NSInteger)loc
222 222
     return dispatch_get_main_queue();
223 223
 }
224 224
 
225
++ (BOOL)requiresMainQueueSetup
226
+{
227
+    return YES;
228
+}
229
+
225 230
 @end