我有這樣的代碼爲我的iOS應用:的iOS 7 - region.center棄用
NSString *location = [[NSString alloc] initWithFormat:@"%@, %@", [self.campus campusStreetAddress], [self.campus campusCityStateZip]];
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
[geocoder geocodeAddressString:location
completionHandler:^(NSArray* placemarks, NSError* error){
if (placemarks && placemarks.count > 0) {
CLPlacemark *topResult = [placemarks objectAtIndex:0];
MKPlacemark *placemark = [[MKPlacemark alloc] initWithPlacemark:topResult];
MKCoordinateRegion region = self.campusMap.region;
region.center = placemark.region.center; //DEPRECATED iOS 7
region.span.longitudeDelta /= 1500;
region.span.latitudeDelta /= 1500;
[self.campusMap setRegion:region animated:NO];
[self.campusMap addAnnotation:placemark];
}
}
];
但是,當我升級我的應用程序到iOS 7,placemark.region.center已被棄用。有我應該使用的替代品嗎?這甚至是在視圖中創建地圖的適當方法嗎?
謝謝!
工作完美,謝謝! – jordangrogan
這個解決方案令我困擾的唯一問題是,不能保證CLPlacemark的區域屬性必然總是會成爲CLCircularRegion。它現在可能有效,但是...我想我寧願在使用它的中心屬性之前確認該區域是CLCircularRegion,如果沒有,則找到可接受的替代值。 –
我同意@DougKnowles是不是現在有更優雅的解決方案? –