我有一个带有图钉的地图视图,当用户选择一个图钉时,它会转到该图钉的详细信息屏幕。我还有一个表视图,当用户选择一个项目时,它会进入相同类型的详细信息视图。

这是问题所在...

从3.1.3到4.1,它似乎都可以正常工作。那是细节视图与引脚匹配。但是我有一个用户刚刚升级到iOS 4.2,并说在4.1下可以正常工作,但是在4.2中,选择引脚会将他带到了不同引脚的细节。但是在表格视图中,它仍然可以正常工作。

iOS 4.2中的MKMapView是否可能更改了pinID的选择方式?

另外-我添加了viewForAnnotation和checkButtonTapped的相关部分

- (MKPinAnnotationView *)mapView:(MKMapView *)eMapView viewForAnnotation:(id <MKAnnotation>)annotation {

int postTag = 0;

MKPinAnnotationView *pinView = (MKPinAnnotationView *)[eMapView dequeueReusableAnnotationViewWithIdentifier:@"Pin"];

if(pinView == nil) {

    pinView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"Pin"];
    pinView.frame = CGRectMake(0, 0, 25, 25);

} else {

    pinView.annotation = annotation;

}

// Set up the Right callout
UIButton *myDetailButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
myDetailButton.frame = CGRectMake(0, 0, 23, 23);
myDetailButton.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
myDetailButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;

[myDetailButton addTarget:self action:@selector(checkButtonTapped:) forControlEvents:UIControlEventTouchUpInside];

// Identify which pin is being selected
if ([[annotation title] isEqualToString:@"Current Location"]) {
    postTag = 99999;
} else {
    postTag = [annotation getPinID];

}

myDetailButton.tag  = postTag;

pinView.rightCalloutAccessoryView = myDetailButton;

pinView.animatesDrop = YES;

// Set to show a callout on the pin
pinView.canShowCallout = YES;

return pinView;
}

// Method to show detail view when the callOut button is selected
- (IBAction) checkButtonTapped: (id) sender {

int nrButtonPressed = ((UIButton *)sender).tag;

if (nrButtonPressed < 99999) {
    if (self.showDetailView == nil) {

        DetailData *tmpViewController = [[DetailData alloc] initWithNibName:@"Detail" bundle:nil];
        self.showDetailView = tmpViewController;
        [tmpViewController release];

    }

    buttonDetail = [[mapView annotations] objectAtIndex:(nrButtonPressed-1)];

    NSMutableArray *tmpArray = [NSMutableArray arrayWithObjects: [buttonDetail getDataI], [buttonDetail getDataII], [buttonDetail getDataIII], [buttonDetail getDataIV], [buttonDetail getDataV], nil];

    self.showDetailView.eventData = [[NSMutableArray alloc] initWithArray:tmpArray copyItems:YES];

    [self.navigationController pushViewController:self.showDetailView animated:YES];

    [self.showDetailView.eventData release];

}


}

如您所见,在checkButtonTapped中,我记录了所选的引脚,然后从该引脚的注释中收集数据。问题似乎是nrButtonPressed现在不正确。但是在4.1中编译就可以了

最佳答案

在checkButtonTapped中,使用按钮的标签标识注释。通过调用自定义方法getPinID在viewForAnnotation中设置按钮的标记。

button标记用作mapView批注数组的索引。尚不清楚getPinID方法如何找出它在mapView的注释数组中的索引。我不确定假设注释将位于数组中的特定索引处是否明智。即使mapView不会乱码注释,您的应用程序也可能会不断添加和删除注释。

由于您是在注释视图中将按钮分配为标注附件,而不是使用按钮标签来标识注释,因此可以使用mapView自己的mapView:annotationView:calloutAccessoryControlTapped:委托方法。

不必在按钮上执行addTarget并让它调用您的自定义方法,而是删除对addTarget的调用并实现calloutAccessoryControlTapped。

在calloutAccessoryControlTapped中,您可以使用view.annotation直接访问注释。您还可以轻松检查注解是否为“用户位置”:

 - (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
    {
        if (view.annotation == mapView.userLocation)
            return;

        buttonDetail = (MyCustomAnnotationClass *)view.annotation;

        //show detail view using buttonDetail...
    }


此外,在viewForAnnotation中,即使正在重新使用视图,您也会每次创建一个按钮。因此,重新使用的注释视图可能最终会导致多个按钮彼此重叠。仅应在if(pinView == nil)部分中创建和设置按钮。

10-07 14:12