- [UIThreadSafeNode canPerformAction: withSender:]: pemilih yang tidak dikenal dikirim ke instance

9

Saya menghadapi kerusakan ini di aplikasi iOS saya.

Fatal Exception: NSInvalidArgumentException
0  CoreFoundation                 0x1b9079c30 __exceptionPreprocess
1  libobjc.A.dylib                0x1b8d940c8 objc_exception_throw
2  CoreFoundation                 0x1b8f77fc0 -[NSOrderedSet initWithSet:copyItems:]
3  CoreFoundation                 0x1b907e3d4 ___forwarding___
4  CoreFoundation                 0x1b9080570 _CF_forwarding_prep_0
5  UIKitCore                      0x1bcf33444 -[UIKeyboardImpl deleteForwardAndNotify:]
6  UIKitCore                      0x1bcf39154 __57-[UIKeyboardImpl acceptPredictiveInput:executionContext:]_block_invoke
7  UIKitCore                      0x1bcf5b0c8 -[UIKeyboardTaskExecutionContext returnExecutionToParentWithInfo:]
8  UIKitCore                      0x1bcf366ec __100-[UIKeyboardImpl addWordTerminator:afterSpace:afterAcceptingCandidate:elapsedTime:executionContext:]_block_invoke
9  UIKitCore                      0x1bcf5b0c8 -[UIKeyboardTaskExecutionContext returnExecutionToParentWithInfo:]
10 UIKitCore                      0x1bcf2bdc0 __55-[UIKeyboardImpl handleKeyboardInput:executionContext:]_block_invoke_2
11 UIKitCore                      0x1bcf5cd70 -[UIKeyboardTaskEntry execute:]
12 UIKitCore                      0x1bcf5b6d4 -[UIKeyboardTaskQueue continueExecutionOnMainThread]
13 libobjc.A.dylib                0x1b8d8faf0 -[NSObject performSelector:withObject:]
14 Foundation                     0x1b946ec10 __NSThreadPerformPerform
15 CoreFoundation                 0x1b8ff5260 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__
16 CoreFoundation                 0x1b8ff51b4 __CFRunLoopDoSource0
17 CoreFoundation                 0x1b8ff4920 __CFRunLoopDoSources0
18 CoreFoundation                 0x1b8fef7ec __CFRunLoopRun
19 CoreFoundation                 0x1b8fef098 CFRunLoopRunSpecific
20 GraphicsServices               0x1c3159534 GSEventRunModal
21 UIKitCore                      0x1bd10f7ac UIApplicationMain
22 Haraj                          0x102fc6058 main + 15 (main.m:15)
23 libdyld.dylib                  0x1b8e6ef30 <redacted>

Sejauh ini lebih dari 100 crash telah dilaporkan. Ini hanya terjadi di iOS 12 dan iOS 13.

Saya tidak dapat menemukan bagaimana ini terjadi dan bagaimana memperbanyaknya.

Jejak tumpukan tidak menunjukkan kode aplikasi saya.

Saya telah mengunggah laporan kerusakan lengkap di sini .

Bantuan apa pun akan sangat dihargai.

Abdullah Umer
sumber

Jawaban:

10

Ini tampaknya merupakan kemunduran dari bug kuno yang terkait dengan "forward delete" pada entri teks iOS: http://www.openradar.me/15114422

Saya percaya ini telah mengalami kemunduran karena keyboard "swipe to type" yang baru.

Anda memiliki 2 opsi untuk diperbaiki:

  1. Tingkatkan UIWebView Anda yang sudah usang ke WKWebView
  2. Solusi hacky: masukkan pemilih yang hilang pada UIThreadSafeNodesaat runtime.

Berikut adalah contoh kode tentang cara memasukkan pemilih yang hilang:

BOOL canPerformAction(id withSender) {
    return false;
} 

- (void)viewDidLoad {
   [super viewDidLoad];

   Class class = NSClassFromString(@"UIThreadSafeNode");
   class_addMethod(class, @selector(canPerformAction:withSender:), (IMP)canPerformAction, "@@:");
}

Anda mungkin harus meletakkan penyisipan metode di suatu tempat yang hanya memuat sekali, seperti di AppDelegate.

Inilah proyek contoh lengkap jika Anda membutuhkannya: https://github.com/elliotfiske/UIWebView-TextEntry-CrashFix/tree/master

Cara mereproduksi:

Buat formulir entri teks di UIWebView, ketikkan beberapa kata, lalu gerakkan kursor ke AKHIR kata yang tepat di tengah kalimat.

Kemudian, pilih salah satu saran teks prediktif. Lihat bug yang sedang beraksi di sini:Rekaman layar dari reproduksi kecelakaan

Elliot Fiske
sumber
2
Saya menggunakan WKWebView. Saya suka solusi peretasan Anda. Saya harap ini berhasil! :)
Abdullah Umer
Saya tidak dapat melaporkan kerusakan pada UIWebView di iOS13.2.2 pengembang beta
harshith7823