1

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];
}
4

3 に答える 3

4

only のプロパティをNSInteger介してany を渡すことができます。tagUIButton

于 2012-07-23T15:24:55.713 に答える
2

-addTarget:action:forControlEvent:for でデータを送信することはできませんUIButton:

[detailButton addTarget:self action:@selector(goToViewWithAnnotation:) forControlEvents:UIControlEventTouchUpInside];

セレクターをトリガーするときに、他の方法でデータを処理してみてください。好きなようにポインターまたは変数を保存するように。

UIButtonご覧のとおり、これらの発信者がいます。

- (void)action
- (void)action:(id)sender
- (void)action:(id)sender forEvent:(UIEvent *)event
于 2012-07-23T13:59:32.730 に答える
0

.h ファイルにプロパティ ((注釈 *) 注釈) を追加できると思います。次に、「-(void)goToViewWithAnnotation」メソッドで注釈を使用できます。または、UIControl を継承する新しいボタンをカスタマイズできます。

于 2012-07-23T15:10:03.807 に答える