使用MAP KIT和 CORE LOCATION。需要從郵政編碼或者city/state中獲取位置。
有什麼實現方法麼?謝謝。
你可以使用 CLGeocoder 類來實現,這個類就是用來轉換地址到經緯度的。
[geocoder geocodeAddressString:@"<postcode here>"
completionHandler:^(NSArray* placemarks, NSError* error){
for (CLPlacemark* aPlacemark in placemarks)
{
// Process the placemark.
}
}];
這裡面有很多方法,包括可以限制搜索區域等