Is there any way to perform continuous background location update in iOS11?
I've read the official documentation, there are two ways to do location update function:
- Standard location update (immediate update)
- Significant change (500 meters or above)
I tried the first one, but it can only last for 20 mins in average. Should I just use the second way to accomplish the function or combine two ways? The document said second method will automatically wake up your app when new location data arrives no matter app is suspended or terminated. Can I use this feature to perform an immediate update?