Our users keep complaining that the purple arrow is appearing even though the app is killed and therefore they automatically think its draining their battery.
We use only significant location change by calling
[locationManager startMonitoringSignificantLocationChanges];
So if we don’t stop the significant location change the purple arrow stays on (and our users think their battery will drain).
Even if we want to stop the significant location change when the app terminates we can't because applicationWillTerminate is rarely called.
So there are 3 options:
Call
(void)applicationDidEnterBackground:(UIApplication *)application
{
[locationManager stopMonitoringSignificantLocationChanges];
}
Problem here is that we don't benefit from the location changes in the background…
Are there any other suggestion that will let us do this:
?
Thank you
Maybe your solutions are all beside the point.
You are trying to solve a cognitive misunderstanding by your users by engineering around it.
Instead, why don't you just explain this to your users?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With