I know that CLLocationManager provides us with multiple precision choice, so it does not constantly send you a bunch of notification. But does it saves power?
I’m looking to do a geofencing application that reminds me to get off the bus. LOL
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The power consumption is dependent on the desiredAccuracy setting of the LocationManager. If you set it to kCLLocationAccuracyBestForNavigation then the power consumption is the highest.
In your scenario you could potentially use kCLLocationAccuracyKilometer as the bus stops should be at least a Kilometer apart.