我在detailDisclousure
的标注上有一个MKAnnotation
按钮。按下此按钮时,我需要调用一个方法传递一个参数,该参数标识调用它的annotation
。怎么可能呢?
这是我的viewForAnnotation:
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
if ([annotation isKindOfClass:[Annotation class]])
{
static NSString* identifier = @"identifier";
MKPinAnnotationView* pinView = (MKPinAnnotationView*)[mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
if (pinView == nil)
{
pinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier]autorelease];
}
Annotation *antt = annotation;
pinView.canShowCallout = YES;
pinView.draggable = YES;
UIButton* detailButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
[detailButton performSelector:@selector(goToViewWithAnnotation:) withObject:antt];
pinView.rightCalloutAccessoryView = detailButton;
return pinView;
}
else
{
return nil;
}
}
这是应该使用参数:
调用的方法-(void)goToViewWithAnnotation:(Annotation *)annotation
{
NextViewController *nextView = [[NextViewController alloc]initWithNibName:@"NextViewController" bundle:nil];
nextView.id = annotation.id;
[self.navigationController nextView animated:YES];
}
答案 0 :(得分:4)
您只能通过NSInteger
的{{1}}属性传递任何tag
。
答案 1 :(得分:2)
无法使用-addTarget:action:forControlEvent:
UIButton
发送数据:
[detailButton addTarget:self action:@selector(goToViewWithAnnotation:) forControlEvents:UIControlEventTouchUpInside];
当您触发选择器时,尝试使用其他方式处理数据。就像保存指针或var一样。
UIButton
有这些来电者,你可以看到:
- (void)action
- (void)action:(id)sender
- (void)action:(id)sender forEvent:(UIEvent *)event
答案 2 :(得分:0)
我认为您可以在.h文件中添加属性(即(注释*)注释)。然后,您可以在“ - (void)goToViewWithAnnotation”方法中使用注释。或者您可以自定义一个继承UIControl的新按钮