7

我正在尝试构建一个应用程序来构建和保存类似于映射我的运行的路线。我正在使用来自 Apple 的Breadcrumb示例代码,特别是CrumbPathandCrumbPathView作为我的路线的基础。两个问题:

  1. 如果我尝试访问类似的MKMapPoint *points对象CrumbPath

    [_route lockForReading];
    NSLog(@"%@", _route.points);
    NSLog(@"%d", _route.pointCount);
    [_route unlockForReading];
    

    我的应用程序崩溃,说:

    Thread 1: EXC_BAD_ACCESS (code: 1, address: 0x9450342d)
    

    我很难理解,因为在CrumbPath.m文件中,苹果公司的人通过显式获取写锁然后解锁它来写入“数组”,但是如果我获取读锁并尝试从中读取,它崩溃。

  2. 我尝试访问 的原因points是试图获取MKMapPoints,将它们转换为CLLocationCoordinate2D对象并保存它们,以便我可以根据用户的请求重绘polyline。由于我无法访问 ,因此points我尝试将我发送到的CLLocationCoordinate2D对象保存在一个数组中以上传到我的Parse后端,但我总是收到一条错误消息:locationManager_route

    Sending 'CLLocationCoordinate2D' to parameter of incompatible type 'id'
    

    这并没有让这变得更容易。有人知道我为什么会收到这些错误吗?

位置经理代表

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations {
    if (_userLocation.longitude != manager.location.coordinate.longitude
        && _userLocation.latitude != manager.location.coordinate.latitude) {
        _userLocation = manager.location.coordinate;
    }

    if (_isRecording) {
        if (!_route) {
            NSLog(@"lat: %f, lng: %f", _userLocation.latitude, _userLocation.longitude);
            _route = [[CrumbPath alloc] initWithCenterCoordinate:_userLocation];
            [_mapView addOverlay:_route];

            MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(_userLocation, 2000, 2000);
            [_mapView setRegion:region animated:YES];
        }else {
            MKMapRect updateRect = [_route addCoordinate:_userLocation];

            if (!MKMapRectIsNull(updateRect)) {
                MKZoomScale currentZoomScale = (CGFloat)(_mapView.bounds.size.width / _mapView.visibleMapRect.size.width);
                CGFloat lineWidth = MKRoadWidthAtZoomScale(currentZoomScale);
                updateRect = MKMapRectInset(updateRect, -lineWidth, -lineWidth);
                [_routeView setNeedsDisplayInMapRect:updateRect];
            }
        }
        [_routePoints addObject:_userLocation];

        [_route lockForReading];
        NSLog(@"%d", _route.pointCount);
        NSLog(@"%@", _route.points);
        [_route unlockForReading];
    }
}

停止记录逻辑

    //stop recording
    NSLog(@"STOP");
    if (_route) {
        NSLog(@"There is a route");
        //Show route options toolbar
        [_route lockForReading];

        NSLog(@"%@", _route);
        NSLog(@"%d", _route.pointCount);
        NSLog(@"%@", _route.points);

        PFObject *routeToSave = [PFObject objectWithClassName:@"Routes"];
        //[routeToSave setObject:_route forKey:@"routePoints"];

        [_route unlockForReading];

        [routeToSave saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
            if (!error) {
                NSLog(@"%c", succeeded);
            }else {
                NSLog(@"%@", error);
            }
        }];
    }
4

3 回答 3

10

关于您的第一个问题,崩溃是因为:

NSLog(@"%@", _route.pointCount);

它应该是:

NSLog(@"%d", _route.pointCount);

正如我的评论中提到的,%d应该用于计数并且%@会导致崩溃。

关于您的第二个问题,您不能将 ac struct 添加到NSArray. 您应该NSValue在将其添加到数组之前将其包装起来。CLLocationCoordinate2D是一个 c 结构。在此处查看文档。

改变这个:

[_routePoints addObject:_userLocation];

到:

NSValue *aValue = [NSValue valueWithMKCoordinate:_userLocation];
[_routePoints addObject:aValue];

要从 中取回坐标NSValue,您可以使用,

[aValue MKCoordinateValue];

如您的错误消息中所述,您试图添加CLLocationCoordinate2D到需要对象的数组中。

于 2013-01-14T23:00:46.110 回答
1

无论您使用什么 api 来进行解析,都需要一个 id,它是指向任何对象的指针。如果我没记错的话,一个 cllocationcoordinate2d 是两个双精度的 c-struct 而不是一个对象。您可能应该创建一个小包装对象来保存这两个双精度并将它们转换为/从 CLLocationCoordinate2d 项目。

于 2013-01-14T22:52:06.927 回答
0

1:

线:NSLog(@"%@", _route.points); 是错的

_route.points 不是字符串,您使用的是 NSTrig 格式化符号“%@”。

更远:

由于 CLLocationCoordinate2D 是 C-Sruct 而不是 Objective-C 对象,因此您可能想要创建自己的 GeoPoint 类。

于 2013-01-14T22:59:59.433 回答