Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Example for startMonitoringSignificantLocationChanges

I am new to iPhone programming. I am looking for an example or a demo on how to use startMonitoringSignificantLocationChanges method with the CoreLocation Manager.

I am confused by the documentation because, I am not sure if the same delegate method is called as in the case of invoking startUpdatingLocation. (i.e. the delegate locationManager: (CLLocationManager *)manager didUpdateToLocation: (CLLocation *)newLocation fromLocation: (CLLocation *)oldLocation is called)

Any help on this would be appreciated. Also, I am testing it on the simulator by subclassing of CLLocationManager. This subclass provides a simulation of location services when running on the iPhone Simulator. Is there a better way to test this.

like image 435
Malolan Santhanakrishnan Avatar asked Oct 12 '10 17:10

Malolan Santhanakrishnan


2 Answers

I have done a bit of testing with the significant change API. I posted a sample project on GitHub that lets you play with regular and significant location updates.

This question might also shed some light on what happens when you get woken up for a significant change event.

Update

Another thing you should be aware of, there is a bug in CoreLocation in 4.1. Basically if your app is in the background, then it will crash when core location tries to wake you up. It is fixed in 4.2.

like image 65
RedBlueThing Avatar answered Oct 22 '22 13:10

RedBlueThing


There is a great video session on these new iOS 4.0 CoreLocation and MapKit features from WWDC 2010 that should be freely available in iTunes U for all registered iPhone developers.

like image 20
Jason McCreary Avatar answered Oct 22 '22 13:10

Jason McCreary