2012-01-19 196 views
0

我正在开发我的应用程序,昨天我在玩它时坠毁。我没有调试过,所以我想我今天会看看崩溃日志。iphone - 理解崩溃日志

但我惊讶的是,我什么都看不到,可以给我一些信息,那就是:

Thread 0 Crashed: 
0 libobjc.A.dylib     0x33479464 objc_msgSend + 16 
1 MapKit       0x31bffe28 -[MKMapView annotationContainer:viewForAnnotation:] + 36 
2 MapKit       0x31bffaba -[MKAnnotationContainerView _addViewForAnnotation:] + 270 
3 MapKit       0x31c25540 -[MKAnnotationContainerView addViewForManagedAnnotation:] + 8 
4 MapKit       0x31c21df2 -[MKMapView(UserPositioningInternal) _runPositioningChange] + 1034 
5 MapKit       0x31c20036 -[MKMapView(UserPositioningInternal) _startPositioningChange:] + 22 
6 MapKit       0x31c23446 -[MKMapView(UserPositioningInternal) locationManagerUpdatedLocation:] + 578 
7 CoreFoundation     0x33a5ebb8 -[NSObject(NSObject) performSelector:withObject:] + 16 
8 CoreFoundation     0x33a83266 -[NSArray makeObjectsPerformSelector:withObject:] + 394 
9 MapKit       0x31c1232a -[MKLocationManager _reportLocationStatus:] + 34 
10 MapKit       0x31c13844 -[MKLocationManager _reportLocationSuccess] + 36 
11 MapKit       0x31c134b8 -[MKLocationManager locationManager:didUpdateToLocation:fromLocation:] + 688 
12 CoreLocation     0x34371410 -[CLLocationManager onClientEventLocation:] + 528 
13 CoreLocation     0x3436f68e -[CLLocationManager onClientEvent:supportInfo:] + 98 
14 CoreLocation     0x3436f7e6 OnClientEventInternal + 14 
15 CoreLocation     0x3436b534 CLClientInvokeCallback(__CLClient*, CLClientEvent, __CFDictionary const*) + 60 
16 CoreLocation     0x3436d3cc CLClientHandleDaemonDataLocation(__CLClient*, CLClientLocation const*, __CFDictionary const*) + 196 
17 CoreLocation     0x3436d512 CLClientHandleDaemonData(__CFMessagePort*, long, __CFData const*, void*) + 286 
18 CoreFoundation     0x33a813fe __CFMessagePortPerform + 242 
19 CoreFoundation     0x33a556f8 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 20 
20 CoreFoundation     0x33a556bc __CFRunLoopDoSource1 + 160 
21 CoreFoundation     0x33a47f76 __CFRunLoopRun + 514 
22 CoreFoundation     0x33a47c80 CFRunLoopRunSpecific + 224 
23 CoreFoundation     0x33a47b88 CFRunLoopRunInMode + 52 
24 GraphicsServices    0x33b0e4a4 GSEventRunModal + 108 
25 GraphicsServices    0x33b0e550 GSEventRun + 56 
26 UIKit       0x32099322 -[UIApplication _run] + 406 
27 UIKit       0x32096e8c UIApplicationMain + 664 
28 Palyque       0x0000280a main (main.m:14) 
29 Palyque       0x00002794 start + 44 

希望你能帮助我,谢谢。

回答

2

没有应用程序仍然在内存中我不确定你可以做的事情很多。根据经验,我想你会发送一个已被释放的对象。 (也许你的MKMapView的数据源对象?)我会尝试运行你的应用程序与僵尸启用追踪它。

+0

真实的故事,它是mapview,它被释放,但它也期待一些数据,它还没有下载,当它做它崩溃严重。 – subharb