这是我的位置管理员委托代码。
当我们使用汽车行驶时它没有给出速度,所以至少速度值应该改变。
它始终给出恒定值-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];
}