0

私とオブジェクトの間の距離で並べられた、オブジェクトの順序付きリストを含むテーブル ビューがあります。オブジェクトの位置をユーザーに示すためにマップに注釈を表示する必要がありますが、各オブジェクトの情報を表示するために押されたものを取得する必要があるため、テーブルの順序と同じ順序で表示する必要があります。

問題は、アノテーションをマップに配置するたびに、アノテーションのタグ番号が異なることです。ランダムな順序で注釈を追加したマップのようなものです。

注釈配列があり、その配列をマップに追加します。

    MKPointAnnotation* tallerAnnotation = [[MKPointAnnotation alloc] init];
    [tallerAnnotation setCoordinate:CLLocationCoordinate2DMake([taller getLatitudTaller],       [taller getLongitudTaller])];
    [tallerAnnotation setTitle:[taller getNombre]];
    [tallerAnnotation setSubtitle:[taller getDomicilio]];
    [annotations addObject:tallerAnnotation];

次に、配列をマップに追加します。

    [mapa addAnnotations:annotations];

注釈をカスタマイズするコードは次のとおりです。

    - (MKAnnotationView *) mapView: (MKMapView *) mapa viewForAnnotation: (id <MKAnnotation>) annotation_ {

    MKPinAnnotationView *pin = (MKPinAnnotationView *) [self.mapa dequeueReusableAnnotationViewWithIdentifier: @"YourPinId"];
    if (pin == nil) {
    pin = [[MKPinAnnotationView alloc] initWithAnnotation:annotation_ reuseIdentifier: @"YourPinId"];


    }
    else {
    pin.annotation = annotation_;
    }
    if ([[annotation_ title]isEqualToString:@"Tu posición"])
    pin.pinColor = MKPinAnnotationColorRed;
    else
    {
    [pin setCanShowCallout:YES];
    pin.pinColor = MKPinAnnotationColorGreen;
    UIButton *rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    [rightButton addTarget:self action:@selector(getInfoTalleres:) forControlEvents:UIControlEventTouchUpInside];
    [rightButton setTag:posicionActualTaller]; 
    pin.rightCalloutAccessoryView = rightButton;

    UILabel *l1=[[UILabel alloc] init];
    l1.frame=CGRectMake(0, 5, 50, 15);
    l1.backgroundColor = [UIColor clearColor];
    l1.textColor = [UIColor whiteColor];
    l1.font=[UIFont fontWithName:@"Arial Rounded MT Bold" size:(10.0)];
    l1.text=[[[mainDelegate getTalleres]objectAtIndex: posicionActualTaller]getDistancia];
    posicionActualTaller +=1;
    UIView *leftCAV = [[UIView alloc] initWithFrame:CGRectMake(0,0,50,15)];
    [leftCAV  addSubview : l1];
    pin.leftCalloutAccessoryView = leftCAV;
    }


    pin.animatesDrop = YES;
    return pin;
    }

私はこのようなことをしたいと思います:

    - (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
    {
    NSLog(@"Tag del taller = %i",[control tag]);
    [mainDelegate setTallerActual:[[mainDelegate getTalleres]objectAtIndex:[control tag]]];
    [self detalleTaller];
    }

[control tag] は、マップ ビューに入るたびに異なる値を持つため、[objects objectAtIndex:[control tag]]; のようなことはできません。

助けてください。

前もって感謝します。

わかりました最終的に私は解決策を見つけました。

私が作成するとき

UIButton *rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
[rightButton addTarget:self action:@selector(getInfoTalleres:) forControlEvents:UIControlEventTouchUpInside];

注釈の場合、注釈のタイトルを次のようにボタンに割り当てます。

[rightButton setTitle:[annotation_ subtitle] forState:UIControlStateNormal];

それで:

-(void)getInfoTalleres:(UIButton* )sender
{   
for (int i = 0; i < [[mainDelegate getTalleres]count]; i++)
{
    if ([[sender currentTitle] isEqualToString:[[[mainDelegate getTalleres]objectAtIndex:i]getDomicilio]])
    {
        [mainDelegate setTallerActual:[[mainDelegate getTalleres]objectAtIndex:i]];
        [self detalleTaller];
        break;
    }
}

}

誰かがこのソリューションを使用できることを願っています。

どうもありがとうココア。

よろしく。

4

1 に答える 1

0

Answer here を確認して、title プロパティにアクセスしますおよびチュートリアルhttp://www.scribd.com/doc/91629556/192/The-MKAnnotationView-class

それでも答えが見つからない場合はお知らせください

于 2012-06-14T11:37:16.043 に答える