iOS Question Help with reading ios crashes (KSCrash)

fastlingo

Member
Licensed User
Longtime User
I have received a crash log on my email. How can I find the place in the code where this crash occurred?
This is the beginning of the crash log. qx is a code module, launchmainpage is a sub in this module, but what do those numbers mean?

B4X:
Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000 at 0x0000000000000000
Triggered by Thread:  0
Application Specific Information:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSCFString stringByReplacingOccurrencesOfString:withString:options:range:]: nil argument'
Thread 0 Crashed:

0   CoreFoundation                    0x000000018ca9d2ec 0x18c983000 + 1155820 (<redacted> + 164)
1   libobjc.A.dylib                   0x0000000189f21a7c 0x189ef0000 + 203388 (objc_exception_throw + 88)
2   Foundation                        0x000000018b6010e4 0x18b5e6000 + 110820 (<redacted> + 304)
3   Languages                         0x0000000100c57a68 0x100b84000 + 866920 (-[NSString(B4I) Replace::] + 96)
4   Languages                         0x0000000100be6acc 0x100b84000 + 404172 (-[ResumableSub_qx_launchmainpage resume::] + 13256)
5   Languages                         0x0000000100c174e0 0x100b84000 + 603360 (-[b4i_qx _launchmainpage] + 112)
6   Languages                         0x0000000100c1e4f0 0x100b84000 + 632048 (-[b4i_qx _nextpage] + 392)
 

Alexander Stolte

Expert
Licensed User
Longtime User
you still have to symbolize the crash report to find out where the error occurs:
 
Upvote 0
Top