Подробный вид представления выноски с пин-кодом хотел бы дать другое значение - PullRequest
0 голосов
/ 20 января 2012

Вот мой код

@implementation AnnotationViewController
@synthesize mapView;

-(void)viewDidLoad {

    [super viewDidLoad];
    [mapView setMapType:MKMapTypeStandard];
    [mapView setZoomEnabled:YES];
    [mapView setScrollEnabled:YES];
    [mapView setDelegate:self];

    MKCoordinateRegion bigBen = { {0.0, 0.0} , {0.0, 0.0} };
    bigBen.center.latitude = 51.50063;
    bigBen.center.longitude = -0.124629;
    bigBen.span.longitudeDelta = 0.02f;
    bigBen.span.latitudeDelta = 0.02f;
    [mapView setRegion:bigBen animated:YES];

    Annotation *ann1 = [[Annotation alloc] init];
    ann1.title = @"Big Ben";
    ann1.subtitle = @"Your subtitle";
    ann1.coordinate = bigBen.center;
    [mapView addAnnotation: ann1];

    MKCoordinateRegion Bridge = { {0.0, 0.0} , {0.0, 0.0} };
    Bridge.center.latitude = 51.500809;
    Bridge.center.longitude = -0.120914;
    Bridge.span.longitudeDelta = 0.02f;
    Bridge.span.latitudeDelta = 0.02f;
    [mapView setRegion:Bridge animated:YES];

    Annotation *ann2 = [[Annotation alloc] init];
    ann2.title = @"Westminster Bridge";
    ann2.subtitle = @"Your subtitle";
    ann2.coordinate = Bridge.center;
    [mapView addAnnotation:ann2];

}

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


    MKPinAnnotationView *MyPin=[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"current"];
    MyPin.pinColor = MKPinAnnotationColorGreen;

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

    MyPin.rightCalloutAccessoryView = advertButton;
    MyPin.draggable = NO;
    MyPin.highlighted = YES;
    MyPin.animatesDrop=TRUE;
    MyPin.canShowCallout = YES;


    return MyPin;
}
-(void)button:(id)sender {

    NSLog(@"Button action");
    [self performSegueWithIdentifier:@"detail" sender:sender];
    [self performSegueWithIdentifier:@"under" sender:sender];
}

Я нажимаю кнопку «Дополнительно», контакты на контакт уже находятся в другом окне, если вы хотите Я даже не знаю, как это сделать. Независимо от текущего статуса, выберите любой вывод с той же страницей сведений Например, это Биг Бен выходит из кнопки нажата, веб-просмотр Вестминстерский мост нажимается, чтобы прийти к просмотру текста Я хочу сделать. Обратите внимание, что я могу использовать версию и раскадровку xcode 4.2. Вот несколько дней, чтобы провести в нем для меня, я буду вам благодарен.

1 Ответ

0 голосов
/ 01 февраля 2012
// You can probably use the property selectedAnnotations in MKMapView
// You might want to consider adding some more error checking

-(void)button:(id)sender {
    if ([mapView.selectedAnnotations count] >= 1) {
        NSLog(@"%@title = %@", [[mapView.selectedAnnotations objectAtIndex:0] title]);
    }
}
...