IOS SDK 7.0 + MKDirections + calculateDirectionsWithCompletionHandler

时间:2013-06-14 10:33:47

标签: ios xcode mapkit directions ios7

我正在开发IOS SDK 7.0中MapKit更新的演示应用程序。

我试图通过IOS SDK 7.0找到两个地方的路线。如果您知道,Apple允许在app中获取方向,而不需要使用IOS SDK 7.0中的外部API。

当我调用calculateDirectionsWithCompletionHandler时,得到异常。我的代码和我的错误如下。

[direction calculateDirectionsWithCompletionHandler:^(MKDirectionsResponse *response, NSError *error) {
                NSLog(@"%@",[response description]);
                NSLog(@"%@",[error description]);

            }];

错误:

[CLPlacemark isCurrentLocation]: unrecognized selector sent to instance 0x9c34ab0

任何人都可以帮我解决这个问题吗?

由于

1 个答案:

答案 0 :(得分:0)

我找到了这个问题。实际上,我已经在我的指示请求中通过了CLPlacemark而不是MKPlacemark

由于