iOSアプリケーションでn分ごとにバックグラウンドロケーションの更新を取得する方法を探しています..今は毎秒更新を取得しています..1秒から3または4秒または毎分に変更できますか...
これが私のコードです:
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
if([self.delegate conformsToProtocol:@protocol(GPSLocationDelegate)]) {
// Check if the class assigning itself as the delegate conforms to our protocol. If not, the message will go nowhere. Not good.
[self.delegate locationUpdate:newLocation];
NSLog(@"location manager");
/// alert for check msg ////
////////////////////////////
}
}