In android there’s the method getLastKnownLocation(), it gets the last fetched updated location on the device.
The essential point is that this location does not even need to be fetched from your application.
I need to do the same thing in IOS, so i need the last fetched location from device, even if it wasn’t from my application (because the location i need doesn’t need at all to be precise)
Thank you.
I’m solving doing as follow:
I create a class GpsManager like:
and I start it on appdelegate, this class will save the location and you can use it, it isn’t util like the getLastKnownLocation() of android but hope a little.