You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on line 109 of LMGeocoder.m file
replace
[self parseGeocodingResponseResults:placemarks service:kLMGeocoderAppleService];
to
NSArray *finalResults = [self parseGeocodingResponseResults:placemarks service:kLMGeocoderAppleService];
if (handler) {
handler(finalResults, nil);
}
on line 207 of LMGeocoder.m file
replace
[self parseGeocodingResponseResults:placemarks service:kLMGeocoderAppleService];
to
NSArray *finalResults = [self parseGeocodingResponseResults:placemarks service:kLMGeocoderAppleService];
if (handler) {
handler(finalResults, nil);
}
The text was updated successfully, but these errors were encountered:
Hello
I found some missing code parts.
on line 109 of LMGeocoder.m file
replace
[self parseGeocodingResponseResults:placemarks service:kLMGeocoderAppleService];
to
NSArray *finalResults = [self parseGeocodingResponseResults:placemarks service:kLMGeocoderAppleService];
if (handler) {
handler(finalResults, nil);
}
on line 207 of LMGeocoder.m file
replace
[self parseGeocodingResponseResults:placemarks service:kLMGeocoderAppleService];
to
NSArray *finalResults = [self parseGeocodingResponseResults:placemarks service:kLMGeocoderAppleService];
if (handler) {
handler(finalResults, nil);
}
The text was updated successfully, but these errors were encountered: