我正在使用Swift开发iOS应用。该应用程序以Apple Maps为中心。我是iOS开发的新手。我正在使用Fabric.io来分发应用并测试崩溃报告。但是,我收到的很多崩溃报告都不是很有帮助。有时崩溃报告只指定崩溃发生的方法,但是没有给我任何关于崩溃原因的线索。 我试图了解这是否是标准的,或者我是否应该切换到另一个崩溃报告服务。
以下是此类崩溃报告的示例:
Crashed: com.apple.main-thread
EXC_BREAKPOINT UNKNOWN at 0x00000001000a68f8
Thread : Crashed: com.apple.main-thread
0 <APP NAME> 0x00000001000a68f8 <APP NAME>.MapViewController.(getMapAnnotations (<APP NAME>.MapViewController) -> (Swift.Double, long : Swift.Double) -> ()).(closure #1).(closure #1) (MapViewController.swift)
1 <APP NAME> 0x00000001000a6570 <APP NAME>.MapViewController.(getMapAnnotations (<APP NAME>.MapViewController) -> (Swift.Double, long : Swift.Double) -> ()).(closure #1).(closure #1) (MapViewController.swift)
2 libdispatch.dylib 0x0000000192ed13ac _dispatch_call_block_and_release + 24
3 libdispatch.dylib 0x0000000192ed136c _dispatch_client_callout + 16
4 libdispatch.dylib 0x0000000192ed5980 _dispatch_main_queue_callback_4CF + 932
5 CoreFoundation 0x00000001820f9fa4 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 12
6 CoreFoundation 0x00000001820f804c __CFRunLoopRun + 1492
7 CoreFoundation 0x00000001820250a4 CFRunLoopRunSpecific + 396
8 GraphicsServices 0x000000018b1bf5a4 GSEventRunModal + 168
9 UIKit 0x0000000186956aa4 UIApplicationMain + 1488
10 <APP NAME> 0x00000001000f1914 main (AppDelegate.swift:16)
11 libdyld.dylib 0x0000000192efaa08 start + 4
以下是发生错误的方法的方法定义:
func getAnnotations(lat: Double, long: Double){ // ignore the lat long arguments
var apiWrapper = apiWrapper()
apiWrapper.search(completionHandler: {(error: NSError?, mediaElements: [MediaElement]?) in
if error == nil {
dispatch_async(dispatch_get_main_queue(), {
self.myMapView!.removeAnnotations(self.myMapView!.annotations)
self.mediaAnnotations = []
for m in mediaElements! {
var annotation = CustomAnnotation(lat: m.lat,long: m.long, mediaTuple: (media.url, media.type))
self.mediaAnnotations.append(annotation)
}
self.reorganizeAnnotations(self.mediaAnnotations)
})
}
})
}
答案 0 :(得分:0)
这是已编译代码的崩溃报告。您所看到的几乎是堆栈跟踪。我不确定你可能熟悉哪种语言,但我假设有类似python的东西,它是一种解释性的语言,你的痕迹给你行号等......
如果swift表现得那样,那也意味着人们对编译代码进行逆向工程会容易得多。