我从 Apple 审核小组收到了这份崩溃报告,他们说应用程序在午餐时崩溃了。我已经符号化了崩溃日志,仔细检查了应用程序版本和 dSYM,但崩溃后的前两行没有符号化(最后符号化崩溃)。
我自己无法重现该错误,并且该应用已经过很多人的测试,目前正在由 Beta 测试人员使用,并且没有人报告此崩溃或任何其他崩溃。此应用的同一版本在 TestFlight 上获得批准,但在 Apple Store 上被拒绝。
如果你们中的一些人能给我一些见解,这是象征性的日志。
提前致谢
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x00000001000e446c
Triggered by Thread: 0
Filtered syslog:
None found
Global Trace Buffer (reverse chronological seconds):
18.764194 CFNetwork 0x000000018117fe7c TCP Conn 0x13ef3aed0 complete. fd: 10, err: 0
18.765782 CFNetwork 0x00000001811813a8 TCP Conn 0x13ef3aed0 event 1. err: 0
19.628068 CFNetwork 0x0000000181181480 TCP Conn 0x13ef3aed0 started
19.631343 CFNetwork 0x00000001811dbe5c Creating default cookie storage with default identifier
19.631343 CFNetwork 0x00000001811dbe28 Faulting in CFHTTPCookieStorage singleton
19.631343 CFNetwork 0x000000018122de50 Faulting in NSHTTPCookieStorage singleton
24.382802 CFNetwork 0x00000001810dd8e0 TCP Conn 0x13ee3e6c0 SSL Handshake DONE
24.428562 CFNetwork 0x00000001810dd7f0 TCP Conn 0x13ee3e6c0 starting SSL negotiation
24.428880 CFNetwork 0x000000018117fe7c TCP Conn 0x13ee3e6c0 complete. fd: 5, err: 0
24.429089 CFNetwork 0x00000001811813a8 TCP Conn 0x13ee3e6c0 event 1. err: 0
24.459404 CFNetwork 0x0000000181181480 TCP Conn 0x13ee3e6c0 started
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 mrquick 0x00000001000e446c 0x100070000 + 476268
1 mrquick 0x00000001000e2504 0x100070000 + 468228
2 UIKit 0x0000000185c50c40 -[UIViewController loadViewIfRequired] + 996
3 UIKit 0x0000000185c690d0 -[UIViewController __viewWillAppear:] + 132
4 UIKit 0x0000000185e03e5c -[UINavigationController _startCustomTransition:] + 1052
5 UIKit 0x0000000185d0fe40 -[UINavigationController _startDeferredTransitionIfNeeded:] + 688
6 UIKit 0x0000000185d0fb1c -[UINavigationController __viewWillLayoutSubviews] + 60
7 UIKit 0x0000000185d0fa84 -[UILayoutContainerView layoutSubviews] + 208
8 UIKit 0x0000000185c4c1e4 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 656
9 QuartzCore 0x00000001835de98c -[CALayer layoutSublayers] + 148
10 QuartzCore 0x00000001835d95c8 CA:ayer::layout_if_needed(CA::Transaction*) + 292
11 QuartzCore 0x00000001835d9488 CA:ayer::layout_and_display_if_needed(CA::Transaction*) + 32
12 QuartzCore 0x00000001835d8ab8 CA::Context::commit_transaction(CA::Transaction*) + 252
13 QuartzCore 0x00000001835d8818 CA::Transaction::commit() + 500
14 QuartzCore 0x00000001835d1ddc CA::Transaction:bserver_callback(__CFRunLoopObserver*, unsigned long, void*) + 80
15 CoreFoundation 0x0000000180ab0728 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 32
16 CoreFoundation 0x0000000180aae4cc __CFRunLoopDoObservers + 372
17 CoreFoundation 0x0000000180aae8fc __CFRunLoopRun + 928
18 CoreFoundation 0x00000001809d8c50 CFRunLoopRunSpecific + 384
19 GraphicsServices 0x00000001822c0088 GSEventRunModal + 180
20 UIKit 0x0000000185cba088 UIApplicationMain + 204
21 mrquick 0x00000001000ec5c4 0x100070000 + 509380
22 libdyld.dylib 0x00000001805768b8 start + 4
Thread 1:
0 libsystem_kernel.dylib 0x0000000180694b48 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x000000018075d530 _pthread_wqthread + 1284
2 libsystem_pthread.dylib 0x000000018075d020 start_wqthread + 4
Best Answer-推荐答案 strong>
作为记录,我能够找到崩溃并解决它,我的应用程序已获得批准并可以出售!
在我的情况下发生崩溃是因为当用户不接受应用位置权限时我没有处理某些功能,它在尝试进行反向地理编码时崩溃。
对于那些有类似问题的人,我给你一些链接,可以帮助你解决崩溃问题,并象征崩溃日志。
感谢
关于ios - Apple Review Team 的 EXC_BREAKPOINT (SIGTRAP) 崩溃报告,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/39299710/
|