CLLocation没有给出实际速度

时间:2015-03-12 09:42:50

标签: ios iphone cllocationmanager

这是我的位置管理员委托代码。

当我们使用汽车行驶时它没有给出速度,所以至少速度值应该改变。

它始终给出恒定值-1.00。

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
    CLLocation *crnLoc = [locations lastObject];
    self.speedometerCurrentValue=crnLoc.speed;
    self.lblSpeed.text=[NSString stringWithFormat:@"%f",crnLoc.speed];
}

1 个答案:

答案 0 :(得分:-1)

请从Apple解释中查看此屏幕截图。你的速度无效。

enter image description here