Reputation: 1336
In Apple's developer portal , it states that startMonitoringForRegion:desiredAccuracy: will eventually wake up my app (even if it's killed) and send the Core location delegate a message.
The question is : Is it possible to start GPS tracking (precise tracking, instead of cell-tower based tracking) after receiving this message (even if my app is in the background ) ?!
Upvotes: 3
Views: 655
Reputation: 1336
Well , I searched for it , and it appears as it does wake up the app.
I can also use startUpdatingLocation
to get more frequent (and even GPS) updates.
Upvotes: 2