ソースを参照

fix: iOS12 WKWebView WebProcessProxy Crash

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

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

@@ -224,4 +224,10 @@ RCT_EXPORT_METHOD(startLoadWithResult:(BOOL)result lockIdentifier:(NSInteger)loc
224 224
   }
225 225
 }
226 226
 
227
+- (dispatch_queue_t)methodQueue
228
+{
229
+    return dispatch_get_main_queue();
230
+}
231
+
232
+
227 233
 @end