Explorar el Código

fix(iOS): WebProcessProxy crash

sunzhongliang hace 4 años
padre
commit
4f98c0bebc
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5
    0
      ios/RNCWebViewManager.m

+ 5
- 0
ios/RNCWebViewManager.m Ver fichero

@@ -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