0

ユーザーがピンを選択すると、そのピンの詳細画面に移動するピンを含むマップ ビューがあります。また、ユーザーがアイテムを選択すると、同じタイプの詳細ビューに移動するテーブル ビューもあります。

配列を介してマップビューに複数のピンを追加しています。アクセサリービューにボタンを追加しましたが、

ここに問題があります...

ピンの選択ボタンをタップすると、別のピンの詳細ビューに移動します。しかし、テーブル ビューではまだ正常に動作します。

-(MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation 
{
    MKPinAnnotationView *newAnnotation = nil;
    if([annotation.title isEqualToString:@"You are here."])
    {
        newAnnotation = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"greenpin"];
        newAnnotation.pinColor = MKPinAnnotationColorGreen;
    }
    else
    {      
        newAnnotation = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"redpin"];
        newAnnotation.pinColor = MKPinAnnotationColorRed;
        UIButton *pinButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
        pinButton.tag = indexvar;
        [newAnnotation addSubview:pinButton];
        newAnnotation.canShowCallout = YES;    
        newAnnotation.rightCalloutAccessoryView = pinButton;
        newAnnotation.calloutOffset = CGPointMake(-5, 5);
        indexvar++;
        return newAnnotation;
        [pinButton release];
    }
    newAnnotation.animatesDrop = YES;
    newAnnotation.canShowCallout = YES;
    return newAnnotation;
}

- (void)mapView:(MKMapView *)wikiMapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control 
{
    NSInteger selectedIndex = ((UIButton *)control).tag;
    NSLog(@"Property Index : %d ",selectedIndex);
    DetailView = [[PropertyDetails alloc] initWithNibName:@"PropertyDetails" bundle:nil];
    DetailView.propertyReference = [PropertyReferenceArr objectAtIndex:selectedIndex];
    DetailView.propertyTitle = [propertyTitlesArr objectAtIndex:selectedIndex];
    DetailView.propertyPrice = [propertyPriceArr objectAtIndex:selectedIndex];
    DetailView.propertyBedrooms = [propertyBedroomsArr objectAtIndex:selectedIndex];
    DetailView.propertyLatitude = [propertyLatitudesArr objectAtIndex:selectedIndex];
    DetailView.propertyLongitude = [propertyLongitudesArr objectAtIndex:selectedIndex];
    DetailView.propertyDefaultImage = [PropertyImageArr objectAtIndex:selectedIndex];
    DetailView.propertyStatusId = [PropertyStatusArr objectAtIndex:selectedIndex];
    [self.navigationController pushViewController:DetailView animated:YES];         
    [DetailView release]; 
}
4

2 に答える 2

1

では、ivar カウンター ( )viewForAnnotationを使用してボタン タグを設定する方法は、delegate メソッドが 1 回だけ呼び出され、注釈が追加された順序で呼び出されることを前提としています (これは、おそらくいくつかのループでインデックス順に実行しています)。indexvar

上記の仮定は安全ではなく、推奨されません。たとえば、ユーザーがパンまたはズームバックしたためにマップ ビューがビューに戻った後に、アノテーションを再表示する必要がある場合、同じアノテーションに対してデリゲート メソッドを複数回呼び出すことができます。

ボタン タグを使用する代わりに、必要な情報をアノテーション クラス自体に埋め込み、アノテーションを追加するときにその情報を設定します。

少なくとも (ただし推奨されません)、できることはpropertyIndex、アノテーション クラスにプロパティを追加し、アノテーションの作成元である配列インデックス (たとえば配列の) と等しくなるように設定することPropertyReferenceArrです。

で使用している多数の配列に基づくより良い解決策は、calloutAccessoryControlTapped(不動産の「Properties」オブジェクトの) すべてのプロパティを保持する適切なクラス オブジェクトを作成し、それらを保持する単一の配列を (代わりに属性ごとに個別の配列)。

このクラス自体は準拠できるMKAnnotationため、別の明示的な注釈オブジェクトを作成する必要はありません (プロパティ オブジェクト自体をマップに追加するだけで済みます)。

次に、カスタム クラスcalloutAccessoryControlTappedにキャストview.annotationするだけで、タグや配列インデックスを必要とせずに、すべての注釈/プロパティ データに即座にアクセスできます。

@naveen があなたのaddSubview行について行ったコメントも有効です (ただし、問題とは関係ありません)。それは絶対に取り除かなければなりません。

また、 では、の後viewForAnnotationに呼び出しても意味がありません。そのコードは決して実行されません ( .[pinButton release];returnreturnpinButton

于 2012-08-06T19:24:52.593 に答える
0
-(void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
{    
    myAnnotation *annView = view.annotation; // myAnnotation is my custom class for annotations
    // now in annView you have the exact annotation whose accessorybutton is clicked now you can do whatever you want with it.
    NSLog(@"title = %@",annView.title);
}

ボタンタグを設定するのではなく、注釈のタイトルまたはサブタイトルを使用して、さらに比較したり、必要なものを何でも使用できます

使用しているコードで

[newAnnotation addSubview:pinButton]; // i think this is wrong you should only add it to accessory view
于 2012-07-27T10:23:24.210 に答える