How do I get a background location update every n minutes in my iOS application?

I found a solution to implement this with the help of the Apple Developer Forums: Specify location background mode Create an NSTimer in the background with UIApplication:beginBackgroundTaskWithExpirationHandler: When n is smaller than UIApplication:backgroundTimeRemaining it will work just fine. When n is larger, the location manager should be enabled (and disabled) again before there is no … Read more