I'm trying to develop an application which displays user speed and some other data.
I want to know what is the minimum speed that Core Location can detect. When I'm moving in the street it's reading is 0.00.
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
//i display some other data here
speedLbl.text =[NSString stringWithFormat:@"Speed: %f km/hr",([lastLocation speed]*3.6)];
}