[ad_1]
I’ve a textView and above it I’ve a separate view that has an inline WKWebView inside it.
view.addSubView(textField)
view.addSubView(separateView)
separateView.addSubview(wkWebView)
If I begin panning and pinching across the wkWebView sufficient I get errors. The primary 2 issues that stand out are
First responder error: non-key window making an attempt reload – permitting on account of handbook keyboard (first responder window is <UIRemoteKeyboardWindow…
and
UITextEffectsWindow mustn’t change into key. Please file a bug to Keyboard
Plainly I can not safely add the wkWebView inside the separate view as a result of this crash retains occurring. As soon as it happens your entire app turns into unusable.
[View] First responder error: non-key window making an attempt reload –
permitting on account of handbook keyboard (first responder window is<UIRemoteKeyboardWindow: 0x1080c1c00; body = (0 0; 414 896); opaque =
NO; autoresize = W+H; layer = <UIWindowLayer: 0x2838eefc0>>, key
window is <UIWindow: 0x107111e70; body = (0 0; 414 896);
gestureRecognizers = <NSArray: 0x28364dad0>; layer = <UIWindowLayer:
0x28381ef60>>)[View] First responder error: non-key window making an attempt reload –
permitting on account of handbook keyboard (first responder window is<UIRemoteKeyboardWindow: 0x1080c1c00; body = (0 0; 414 896); opaque =
NO; autoresize = W+H; layer = <UIWindowLayer: 0x2838eefc0>>, key
window is <UIWindow: 0x107111e70; body = (0 0; 414 896);
gestureRecognizers = <NSArray: 0x28364dad0>; layer = <UIWindowLayer:
0x28381ef60>>)Assert] UITextEffectsWindow mustn’t change into key. Please file a bug to Keyboard | iOS with this name stack:
(
0 UIKitCore 0x00000001a638b204 33B02AB5-5DAF-3249-8DC6-5872DF830EC5
1 UIKitCore 0x00000001a60cee3c 33B02AB5-5DAF-3249-8DC6-5872DF830EC5
2 WebKit 0x00000001b0157c5c 9F7B0B3B-7F33-3F7F-883E-7B2EE83F42FB +
74292123 WebKit 0x00000001afe510d4 9F7B0B3B-7F33-3F7F-883E-7B2EE83F42FB +
42559564 WebKit 0x00000001b00cac88 9F7B0B3B-7F33-3F7F-883E-7B2EE83F42FB +
68517205 WebKit 0x00000001afa93064 9F7B0B3B-7F33-3F7F-883E-7B2EE83F42FB +
3318766 WebKit 0x00000001afe11538 9F7B0B3B-7F33-3F7F-883E-7B2EE83F42FB +
39949367 WebKit 0x00000001afa74858 9F7B0B3B-7F33-3F7F-883E-7B2EE83F42FB +
2069368 WebKit 0x00000001afa7414c 9F7B0B3B-7F33-3F7F-883E-7B2EE83F42FB +
2051329 JavaScriptCore 0x00000001ad9f4220
74545BAC-15FF-320D-A90B-8F89F75E39C1 + 1613878410 JavaScriptCore 0x00000001ad9f51f0
74545BAC-15FF-320D-A90B-8F89F75E39C1 + 1614283211 CoreFoundation 0x00000001a36089e8
4FBDF167-161A-324C-A233-D516922C67E5 + 67018412 CoreFoundation 0x00000001a36088e4
4FBDF167-161A-324C-A233-D516922C67E5 + 66992413 CoreFoundation 0x00000001a3607be8
4FBDF167-161A-324C-A233-D516922C67E5 + 66660014 CoreFoundation 0x00000001a3601bc8
4FBDF167-161A-324C-A233-D516922C67E5 + 64199215 CoreFoundation 0x00000001a3601360 CFRunLoopRunSpecific + 600
16 GraphicsServices 0x00000001bac3f734 GSEventRunModal + 164
17 UIKitCore 0x00000001a607c584 33B02AB5-5DAF-3249-8DC6-5872DF830EC5
18 UIKitCore 0x00000001a6081df4 UIApplicationMain + 168
19 libswiftUIKit.dylib 0x00000001b73c524c
$s5UIKit17UIApplicationMainys5Int32VAD_SpySpys4Int8VGGSgSSSgAJtF + 10420 myAppName 0x0000000104990800
$sSo21UIApplicationDelegateP5UIKitE4mainyyFZ + 12021 myAppName 0x0000000104990778 $s7myAppName11AppDelegateC5$mainyyFZ
22 myAppName 0x000000010499e3cc fundamental + 32
23 libdyld.dylib 0x00000001a32bdcf8
E574A365-9878-348A-8E84-91E163CFC128 + 7416)
[ad_2]
