点击MKAnnotation上的Swift/iOS MapKit功能



我有一个地图,我完美地添加了12个注释,我想要的是,当有人点击这些注释时,它会在注释的右侧有一个信息按钮,当点击时,它将显示地图应用程序中注释的方向。我已经编写了用所需坐标打开地图应用程序的函数。我只是不确定如何将信息按钮添加到注释中,并使其在点击时执行该函数。

编辑:我要求在Swift中完成。

您可以使用mapview的ViewForAnnotation方法如下

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    MKAnnotationView *annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"loc"];
    annotationView.canShowCallout = YES;
    annotationView.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    return annotationView;
}

还可以添加调用附件视图的方法

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control
{
    [self performSegueWithIdentifier:@"DetailsIphone" sender:view];
}

通过这种方式,您可以在信息按钮上导航到方向。

更新为Swift代码

func mapView(mapView: MKMapView!, annotationView view: MKAnnotationView!, 
             calloutAccessoryControlTapped control: UIControl!) {
    if control == view.rightCalloutAccessoryView {
        println("Disclosure Pressed! (view.annotation.subtitle)"
    }
}

你可以把它用于swift语言。

请添加此代码以查看注释:

func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {
        if !(annotation is CustomPointAnnotation) {
            return nil
        }
        let reuseId = "test"
        var anView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId)
        if anView == nil {
            anView = MKAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
            anView.canShowCallout = true
            anView.rightCalloutAccessoryView = UIButton.buttonWithType(.InfoDark) as UIButton
        }
        else {
            anView.annotation = annotation
        }

        let cpa = annotation as CustomPointAnnotation
        anView.image = UIImage(named:cpa.imageName)
        return anView
    }

确保已添加"MKMapViewDelegate">

对于Swift 2,我是这样做的:

let buttonType = UIButtonType.InfoDark
barAnnotView?.rightCalloutAccessoryView = UIButton(type: buttonType)

最新更新