我正在学习iOS开发并且有一个崩溃的MapKit应用程序。需要帮助了解此崩溃日志

时间:2011-07-25 01:46:25

标签: ios xcode debugging mkmapview crash-log

我正在努力和应用程序从“BNR iOS编程指南”第5章调用whereami。我有应用程序工作并将其留在我的手机上,以显示我正在学习的妻子和家人。尽管如此,它仍然表现出一种常规的崩溃行为。这是发生了什么......

当您第一次打开应用程序并运行它时它很好, 如果你回家然后在几分钟内再打开它就可以了, 如果你把它留在后台然后重新打开几分钟(比如5个或更多),它会崩溃。 然后你可以重新打开它然后它很好,但模式重复。

我已经用书仔细检查了我的所有代码并查看了勘误页面,但无法弄清楚可能出现的问题。 Xcode组织者显示所有崩溃的日志,但我不知道如何阅读。我开始怀疑,因为这只是一个学习项目的应用程序,不适合实际使用,也许它缺少一些使它成为多任务/后台/重新打开???是否正确?我正在使用运行iOS 4.3.4的iPhone 4上的Xcode 4.1。我将不胜感激任何人都可以提供帮助。

以下是我认为崩溃日志的相关部分:

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];

}

2 个答案:

答案 0 :(得分:7)

我在本书的第3版中遇到了这个问题,看到它在本书的第2版论坛中得到了解答,但不是在这里。问题是,当应用程序在后台运行超过5-10分钟后返回时,WhereAmIAppDelegate会收到无效位置。不知道为什么会发生这种情况,但这就是我修复它的方法:

- (void)mapView:(MKMapView *)mapView 
    didUpdateUserLocation:(MKUserLocation *)userLocation
{
    // Here we are... but how do we actually zoom?
    CLLocationCoordinate2D loc = [userLocation coordinate];
    if(CLLocationCoordinate2DIsValid(loc))
    {
        MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(loc, 320, 480);
        [worldView setRegion:region animated:YES];
    }
}

很抱歉“necro”是一个老线程,但我认为这可能有助于寻求帮助的人。顺便说一下,我正在使用Xcode 4.3.2和iOS 5.1。

答案 1 :(得分:3)

尝试检查该区域是否有某些值。同时将250更改为250.0。给我一些反馈。 :)