我正在使用CoreLocation更新我的设备位置
-(void)viewDidLoad
{
[super viewDidLoad];
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
self.locationManager.delegate = self;
[self.locationManager startUpdatingLocation];
}
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations {
CLLocation *loc = locations.lastObject;
double speed = loc.speed;
NSLog(@"speed-----%f ", speed);
}
当我用模拟器进行测试时,它会每秒更新一次并获得速度(通过给模拟器定位高速公路驱动器) 但是当我使用真实设备进行测试时,它会以10-15秒的间隔更新位置。 为什么会这样,请帮帮我?
答案 0 :(得分:0)
您应该尝试将“pausesLocationUpdatesAutomatically”属性设置为NO。所以,self.locationManager.pausesLocationUpdatesAutomatically = NO;
默认值为YES,在这种情况下,当“它认为”位置不太可能改变时,LocationManager会停止更新位置。