iOS - MKPlacemark设置标题问题

时间:2012-03-07 20:42:31

标签: ios mkannotation clgeocoder

我在设置地标的标题字幕时遇到问题。

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

为什么我不能在这里设置标题和副标题?

1 个答案:

答案 0 :(得分:7)

以为我会把这个帖子唤醒并给你一个我想出的解决方案。

据我所知,由于固有的分配,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

我相信你现在已经找到了自己的解决方案,但我希望这在某种程度上是有用的。