【发布时间】:2011-04-23 18:47:57
【问题描述】:
只是一个关于核心位置的快速问题,我正在尝试计算两点之间的距离,代码如下:
-(void)locationChange:(CLLocation *)newLocation:(CLLocation *)oldLocation
{
// Configure the new event with information from the location.
CLLocationCoordinate2D newCoordinate = [newLocation coordinate];
CLLocationCoordinate2D oldCoordinate = [oldLocation coordinate];
CLLocationDistance kilometers = [newCoordinate distanceFromLocation:oldCoordinate] / 1000; // Error ocurring here.
CLLocationDistance meters = [newCoordinate distanceFromLocation:oldCoordinate]; // Error ocurring here.
}
我在最后两行收到以下错误:
错误:无法转换为指针类型
我一直在谷歌上搜索,但找不到任何东西。
【问题讨论】:
标签: ios objective-c core-location