我正在开发“BNR iOS 编程指南”第 5 章中名为 whereami 的应用程序。我的应用程序正在运行,并将其留在手机上,以向妻子和家人展示我正在学习的东西。它虽然表现出常规的崩溃行为。这就是发生的事情......
当您第一次打开应用程序并运行它时它很好,如果你回家然后在几分钟内再次打开它就很好,如果你把它留在后台然后重新打开超过几分钟(比如 5 或更多) 后来它崩溃了。然后您可以重新打开它,它确实很好,但模式会重复。
我已经用这本书仔细检查了我的所有代码,并查看了勘误表页面,但无法弄清楚可能出了什么问题。Xcode 管理器显示所有崩溃的日志,但我还不知道如何阅读。我开始怀疑,由于这只是一个学习项目应用程序,而不是真正使用,也许它缺少使它成为多任务/后台/重新打开的东西???正确吗?我在 Lion 上使用 Xcode 4.1 和运行 iOS 4.3.4 的 iPhone 4。任何人都可以提供任何帮助,我将不胜感激。
这是我认为崩溃日志的相关部分:
Incident Identifier: 352B538C-75BB-4BDF-9C2B-EC9613CE1B44
CrashReporter Key: 5896ed7851b999169919cab30c69940f74ed6b0c
Hardware Model: iPhone3,1
Process: WhereAmI [775]
Path: /var/mobile/Applications/DB57A854-01F8-460F-B8CD-38B8FC50FBAF/WhereAmI.app/WhereAmI
Identifier: WhereAmI
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2011-07-23 18:47:19.093 -0400
OS Version: iPhone OS 4.3.4 (8K2)
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread: 0
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x356d8a1c __pthread_kill + 8
1 libsystem_c.dylib 0x34d543b4 pthread_kill + 52
2 libsystem_c.dylib 0x34d4cbf8 abort + 72
3 libstdc++.6.dylib 0x35434a64 __gnu_cxx::__verbose_terminate_handler() + 376
4 libobjc.A.dylib 0x35fdd06c _objc_terminate + 104
5 libstdc++.6.dylib 0x35432e36 __cxxabiv1::__terminate(void (*)()) + 46
6 libstdc++.6.dylib 0x35432e8a std::terminate() + 10
7 libstdc++.6.dylib 0x35432f5a __cxa_throw + 78
8 libobjc.A.dylib 0x35fdbc84 objc_exception_throw + 64
9 CoreFoundation 0x3504d3c6 -[NSException raise] + 2
10 MapKit 0x3389bcb2 -[MKMapView setRegion:animated:] + 318
11 WhereAmI 0x000029cc -[WhereAmIAppDelegate mapView:didUpdateUserLocation:] (WhereAmIAppDelegate.m:52)
12 MapKit 0x338a11b6 -[MKMapView(UserPositioningInternal) resetUserLocation] + 142
13 MapKit 0x338a074e -[MKMapView(UserPositioningInternal) locationManagerDidReset:] + 22
14 CoreFoundation 0x34fbaefc -[NSObject(NSObject) performSelector:withObject:] + 16
15 CoreFoundation 0x34ff82f2 -[NSArray makeObjectsPerformSelector:withObject:] + 394
16 MapKit 0x33893802 -[MKLocationManager _reportLocationStatus:] + 34
17 MapKit 0x338937ce -[MKLocationManager _reportLocationReset] + 14
18 MapKit 0x33894d24 -[MKLocationManager reset] + 88
19 MapKit 0x338770a2 -[MKLocationManager applicationResumed:] + 62
20 Foundation 0x30fa017c _nsnote_callback + 136
21 CoreFoundation 0x3501c208 __CFXNotificationPost_old + 396
22 CoreFoundation 0x34fb6ee4 _CFXNotificationPostNotification + 112
23 Foundation 0x30f9d5cc -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
24 UIKit 0x3640f720 -[UIApplication _handleApplicationResumeEvent:] + 900
25 UIKit 0x362b9e20 -[UIApplication handleEvent:withNewEvent:] + 2724
26 UIKit 0x362b920e -[UIApplication sendEvent:] + 38
27 UIKit 0x362b8c4c _UIApplicationHandleEvent + 5084
28 GraphicsServices 0x35827e70 PurpleEventCallback + 660
29 GraphicsServices 0x35827efa PurpleEventSignalCallback + 10
30 CoreFoundation 0x35024a72 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 6
31 CoreFoundation 0x35026758 __CFRunLoopDoSources0 + 376
32 CoreFoundation 0x350274e4 __CFRunLoopRun + 224
33 CoreFoundation 0x34fb7ebc CFRunLoopRunSpecific + 224
34 CoreFoundation 0x34fb7dc4 CFRunLoopRunInMode + 52
35 GraphicsServices 0x35827418 GSEventRunModal + 108
36 GraphicsServices 0x358274c4 GSEventRun + 56
37 UIKit 0x362e3d62 -[UIApplication _run] + 398
38 UIKit 0x362e1800 UIApplicationMain + 664
39 WhereAmI 0x000027c0 main (main.m:14)
40 WhereAmI 0x00002768 start + 32
我对此很陌生,但我猜最后一个调用的函数在这里:
8 libobjc.A.dylib 0x35fdbc84 objc_exception_throw + 64
9 CoreFoundation 0x3504d3c6 -[NSException raise] + 2
10 MapKit 0x3389bcb2 -[MKMapView setRegion:animated:] + 318
11 WhereAmI 0x000029cc -[WhereAmIAppDelegate mapView:didUpdateUserLocation:] (WhereAmIAppDelegate.m:52)
WhereAmIAppDelegate.m 的方法代码在这里:
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation{
// Zoom in on user here
CLLocationCoordinate2D loc = [userLocation coordinate];
MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(loc, 250, 250);
[worldView setRegion:region animated:YES];
}