views:

150

answers:

2

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.

A: 

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.

Jason McCreary
Thanks for the reply Jason! I am a registered developer but I did not pay the $99. Can I still access these files?
Mark
Not sure about that. See if you can log into iTunes with your developer account and get them. Or log into the ADC and see if there's a link.
Jason McCreary
Got the download thanks! I will check the presentations!
Mark
+1  A: 

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. Apparently it is fixed in 4.2.

Cannonade
Thanks cannonade! I will check that sample project.
Mark
@mark No problems. If you find either of the two answers useful, please vote them up and if a particular answer resolves your issue you can select it as the "accepted answer". Good luck :)
Cannonade
I dont have enough reputations to vote the answer. But I marked the answer as the accepted answer. Thanks again. The sample app was really helpful. Do you have significant experience in working with startMonitoringSignificantLocationChanges? I am asking this because I am newbie trying something ambitious. I am running into issues like this because of limited documentation.
Mark
@Mark Yep. I had the same problems (hence the linked question). I was making some progress, but the bug in iOS 4.1 has put a damper on my dev efforts till 4.2 comes out.
Cannonade
I think 4.2 is out now. I mean at least the developer preview. Hope the bug is fixed.
Mark
@Mark Yep it is. Haven't tried it yet.
Cannonade