Quote:
Originally Posted by skunkio
Hi guys,
any update on it? I have the same issue but only if my iphone is connected with wi-fi. Looks work fine under 3g but the position is not really correct.
Using Maps within my iphone the location is right and works also under wi-fi.
Any idea?!?
|
This issue ( error 503 ) was fooling me for an hour. I am using CLLocationManager which notifies about updates. Its delegate method -locationManager:didUpdateToLocation:fromLocation: creates an instance of
MKReverseGeocoder which immediately after creation receives a -start message. I noticed, that often -locationManager:didUpdateToLocation:fromLocation: is called twice in short time span (<1s). In these cases, usually on initialization, the application was crashing. Locking the delegate's method for some time (I used 3s) prevents crashing.
This may be a separate case but maybe it helps somebody - guaratee only one performing instance of the reverse geocoder at a time.