2012-09-26 51 views
5

我一直在iOS 6上发生这次崩溃,但我不知道什么是错的。有谁知道它是什么意思?IOS 6地图崩溃

Exception Type: EXC_BAD_ACCESS (SIGBUS) 
Exception Codes: EXC_ARM_DA_ALIGN at 0x00000001 
Crashed Thread: 0 

Thread 0 name: Dispatch queue: com.apple.main-thread 
Thread 0 Crashed: 
0 CoreFoundation     0x3bcab0d8 CFRetain + 20 
1 CoreFoundation     0x3bd424ee __CFSetStandardRetainKey + 50 
2 VectorKit      0x3840e97c -[VKAnimation _stopAnimation:] + 36 
3 VectorKit      0x383d841c -[VKAnimation onTimerFired:] + 48 
4 VectorKit      0x383d8240 -[VKMainLoop displayTimerFired:] + 352 
5 QuartzCore      0x3664377c    CA::Display::DisplayLink::dispatch(unsigned long long, unsigned long long) + 156 
6 QuartzCore      0x366436d4 CA::Display::IOMFBDisplayLink::callback(__IOMobileFramebuffer*, unsigned long long, unsigned long long, unsigned long long, void*) + 60 
7 IOMobileFramebuffer    0x3c497fd4 IOMobileFramebufferVsyncNotifyFunc + 152 
8 IOKit       0x35a965aa IODispatchCalloutFromCFMessage + 190 
9 CoreFoundation     0x3bd35888 __CFMachPortPerform + 116 
10 CoreFoundation     0x3bd403e4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 32 
11 CoreFoundation     0x3bd40386 __CFRunLoopDoSource1 + 134 
12 CoreFoundation     0x3bd3f20a __CFRunLoopRun + 1378 
13 CoreFoundation     0x3bcb2238 CFRunLoopRunSpecific + 352 
14 CoreFoundation     0x3bcb20c4 CFRunLoopRunInMode + 100 
15 GraphicsServices    0x33eae336 GSEventRunModal + 70 
16 UIKit       0x3be33284 UIApplicationMain + 1116 
17 App Name      0x000dcb88 main (main.m:14) 
18 App Name      0x000dcb54 start + 36 

的应用程序在IOS 6

回答

3

这是一个内部错误。 Report this to Apple

如果在模拟器中发生这种情况,您可以使用模拟器的“重置内容”(在app/iOS模拟器菜单中)清除缓存。

+2

我提交了一个错误报告,但我发现了确切的问题和解决方法。问题是我正在设置[self.mapView setUserTrackingMode:MKUserTrackingModeFollow animated:NO];因为mapView正在从后台过渡到前台。我结束了在mapView委托 - (无效)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation设置上面的代码行,它现在工作。 – Dmorneault

1

使用MKMapkit貌似问题是,通过访问内或即将释放的对象VectorKit的stopAnimation后引起的:方法被调用。我对VectorKit并不熟悉,所以你可以看看这个方法,或者看起来像onTimerFired:delegate回调。

祝你好运。

Tim

+0

感谢您的回应,但崩溃日志中的所有这些API(如VectorKit)均来自Apple。我没有任何控制权。 – Dmorneault