I'm using CoreLocation,and I want to call a method to do some computations on the latitude and longitude after they have been assigned valid values or after these values have been updated.

How do you implement this? I was considering using performSelector, but those methods take a time delay -- i don't want a time delay, i want to know that latitude and longitude have valid values first.

有帮助吗?

解决方案

Why not call whatever method you want in Core Locations delegate method:

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation;

Rule of thumb is to ignore the first set of CLLocation coordinates.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top