2
我正在開發一款應用程序,可以保存用戶當前位置的街道。我已經有了位置,並利用地理編碼I'm得到街道和數量:iPhone上的位置,subThoroughfare爲空
- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark
{
// with the placemark you can now retrieve the city name
[self setCity:placemark.subLocality];
[self setStreet:placemark.thoroughfare];
[self setNumber:placemark.subThoroughfare];
}
一切進展不錯,但我真的在阿根廷,與標的subthoroughfare場總是空。
我發現一些與此相關的東西:https://stackoverflow.com/questions/7335094/mapkit-stopped-sending-subthoroughfare-when-the-coordinates-dont-correspond-to,但即使在確切位置(在阿根廷),我也總是得到空。在Android中,我能夠在沒有任何問題的情況下獲得街道號碼。
任何意見可以理解