我在设置地名的标题和副标题上有问题。
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];
placemark.title = @"Some Title";
placemark.subtitle = @"Some subtitle";
MKCoordinateRegion region = self.mapView.region;
region.center = placemark.region.center;
region.span.longitudeDelta /= 8.0;
region.span.latitudeDelta /= 8.0;
[self.mapView setRegion:region animated:YES];
[self.mapView addAnnotation:placemark];
}
}
];placemark.title = @"Some Title";和placemark.subtitle = @"Some subtitle";
给我一个错误:
Assigning to property with 'readonly' attribute not allowed为什么我不能在这里设置标题和副标题?
发布于 2012-07-06 20:05:30
我想我会唤醒这条线给你一个我想出的解决方案。
据我所知,MKPlacemark的标题/字幕是由于固有的赋值而具有的只读属性。但是,使用我找到的解决方案,您可以简单地将MKPlacemark传递到MKPointAnnotation中,如下所示:
CLPlacemark *topResult = [placemarks objectAtIndex:0];
// Create an MLPlacemark
MKPlacemark *placemark = [[MKPlacemark alloc] initWithPlacemark:topResult];
// Create an editable PointAnnotation, using placemark's coordinates, and set your own title/subtitle
MKPointAnnotation *point = [[MKPointAnnotation alloc] init];
point.coordinate = placemark.coordinate;
point.title = @"Sample Location";
point.subtitle = @"Sample Subtitle";
// Set your region using placemark (not point)
MKCoordinateRegion region = self.mapView.region;
region.center = placemark.region.center;
region.span.longitudeDelta /= 8.0;
region.span.latitudeDelta /= 8.0;
// Add point (not placemark) to the mapView
[self.mapView setRegion:region animated:YES];
[self.mapView addAnnotation:point];
// Select the PointAnnotation programatically
[self.mapView selectAnnotation:point animated:NO];请注意,最后的[self.mapView selectAnnotation:point animated:NO];是一个解决办法,以允许自动弹出的广场.然而,animated:BOOL部分似乎只适用于iOS5中的NO --如果您遇到手动弹出点注释的问题,您可能希望实现一个解决方案,在这里可以找到:MKAnnotation not getting selected in iOS5。
我相信你已经找到了自己的解决方案,但我希望这在某种程度上是信息丰富的。
https://stackoverflow.com/questions/9608731
复制相似问题