首先,我对 iOS Dev 和 Objective-C 非常陌生。所以请原谅任何愚蠢的问题或代码。
我一直在 iPhone 上测试定位服务。我有这个由 NSTimer 触发的代码:
- (void)startLocationTracking
{
if(self.locationManager==nil){
_locationManager=[[CLLocationManager alloc] init];
_locationManager.delegate=self;
_locationManager.desiredAccuracy=kCLLocationAccuracyBest;
_locationManager.distanceFilter=1;
self.locationManager=_locationManager;
}
if([CLLocationManager locationServicesEnabled]){
[self.locationManager startUpdatingLocation];
}
}
这是我的位置管理器功能:
-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{
[self timerLog];
NSString *deviceID = [self getUUID];
double lat = newLocation.coordinate.latitude;
double lon = newLocation.coordinate.longitude;
double alt = newLocation.altitude;
double dir = newLocation.course;
double spd = newLocation.speed;
double ha = newLocation.horizontalAccuracy;
double va = newLocation.verticalAccuracy;
NSDateFormatter *formatter;
NSString *ts;
formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss.SSS"];
ts = [formatter stringFromDate:[NSDate date]];
[self geoTrackingWS :deviceID :lat :lon :alt :dir :spd :ha :va :ts];
[manager stopUpdatingLocation];
}
出于某种原因,我的函数geoTrackingWS
会随机触发多次。NSTimer 每 1 分钟运行一次(仅作为测试),有时它运行良好,它只调用geoTrackingWS
一次,但其他时候它会达到 2 或 3 次。
我已经完成了日志记录,我可以看到我的 NSTimer 工作正常,并且可以正常启动。
我感觉它与我手机上的另一个应用程序有关,但我不确定。
对此的任何帮助或见解都会很棒。
谢谢