Может ли кто-нибудь сообщить мне, возможно ли обрабатывать такие события, как OrientationChanged, Shake, LocationChanged и т. Д., Когда мое приложение работает в фоновом режиме?
Я попробовал следующий код, но он вызывается только тогда, когда мое приложение работает на переднем плане!
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
//if the time interval returned from core location is more than two minutes we ignore it because it might be from an old session
if ( abs([newLocation.timestamp timeIntervalSinceDate: [NSDate date]]) < 120) {
self.currentLocation = newLocation;
}
NSLog(@"lat: %f long:%f",currentLocation.coordinate.latitude,currentLocation.coordinate.longitude);
}
Спасибо.