문제

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