我将Fabric.io与Ionic应用程序集成在一起 . 我正在与Ionic 1进行一些奇怪的致命崩溃 . 其中一些与双击(swallowsDoubleTap问题)有关,有些与过渡有关 . 有些是动画相关的,其中一些与全屏和自动旋转的AV播放有关 . 但是,它们都是Native Crashes . 对于这些致命的崩溃,调试和点击 - 尝试应用程序组件/应该存在的区域不会产生预期的结果 .

这是一个这样的例子:

**[UITextInteractionAssistant(UITextInteractionAssistant_Internal) swallowsDoubleTapWithScale:atPoint:]
** crash logged to Fabric:

Crashed: com.apple.main-thread
0  libobjc.A.dylib                0x1814d2f30 objc_msgSend + 16
1  UIKit                          0x188ebbf1c -[UITextInteractionAssistant(UITextInteractionAssistant_Internal) swallowsDoubleTapWithScale:atPoint:] + 272
2  UIKit                          0x188d5a2c4 -[UIWebDocumentView shouldSelectionAssistantReceiveDoubleTapAtPoint:forScale:] + 108
3  UIKit                          0x188eae59c -[UIGestureRecognizerTarget _sendActionWithGestureRecognizer:] + 64
4  UIKit                          0x188eb1ca4 _UIGestureRecognizerSendTargetActions + 124
5  UIKit                          0x188a732e8 _UIGestureRecognizerSendActions + 260
6  UIKit                          0x188911828 -[UIGestureRecognizer _updateGestureWithEvent:buttonEvent:] + 764
7  UIKit                          0x188ea1ce8 _UIGestureEnvironmentUpdate + 1100
8  UIKit                          0x188ea1848 -[UIGestureEnvironment _deliverEvent:toGestureRecognizers:usingBlock:] + 408
9  UIKit                          0x188ea0b04 -[UIGestureEnvironment _updateGesturesForEvent:window:] + 268
10 UIKit                          0x18890fa44 -[UIWindow sendEvent:] + 2960
11 UIKit                          0x1888e052c -[UIApplication sendEvent:] + 340
12 UIKit                          0x1890cda54 __dispatchPreprocessedEventFromEventQueue + 2736
13 UIKit                          0x1890c74bc __handleEventQueue + 784
14 CoreFoundation                 0x182a34278 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
15 CoreFoundation                 0x182a33bc0 __CFRunLoopDoSources0 + 524
16 CoreFoundation                 0x182a317c0 __CFRunLoopRun + 804
17 CoreFoundation                 0x182960048 CFRunLoopRunSpecific + 444
18 GraphicsServices               0x1843e6198 GSEventRunModal + 180
19 UIKit                          0x18894b2fc -[UIApplication _run] + 684
20 UIKit                          0x188946034 UIApplicationMain + 208
21 My_App                         0x100071050 main (main.m:32)
22 libdispatch.dylib              0x1819445b8 (Missing)

我查看了以下SO线程:

但是,崩溃日志与我在Fabric中的崩溃日志有所不同 . 你认为Fabric正在弄乱我的崩溃报告吗?

有很多这些,我想知道是否有任何可靠的方法来调试此类崩溃?我正在尝试使用iOS崩溃报告进行调试,但我们没有实现任何自定义手势或事件,只使用Angular的标准点击/点击事件 . 我想知道是否还有其他工具 .

谢谢 .