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);
}