소스 검색

fix: iOS12 WKWebView WebProcessProxy Crash

sunzhongliang 5 년 전
부모
커밋
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