如何将 .xib 界面设置为自定义标注视图?

How to set .xib interface as a custom callout view?

我刚刚创建了带有 GUI 的 CustomCallout.xib。我想将它用作注释的自定义标注,但我不知道应该在哪里设置要显示的视图以及如何将值传递给该视图。

我想显示的 标注视图 如下所示。

这是我的自定义注释 的代码。

class MapPin : MKPointAnnotation {
var name: String
var street: String
var type: String
var postCode: String

init(name: String, street: String, type: String, postCode: String) {
    self.name = name
    self.street = street
    self.type = type
    self.postCode = postCode
}}

还有我的视图控制器

import UIKit
import MapKit

class ViewController: UIViewController, MKMapViewDelegate {

@IBOutlet var mapView: MKMapView!
let span = MKCoordinateSpanMake(0.05, 0.05)


override func viewDidLoad() {
    super.viewDidLoad()

    self.mapView.delegate = self

    let location = CLLocationCoordinate2D(
        latitude: 53.430,
        longitude: 14.529)

    let region = MKCoordinateRegion(center: location, span: span)
    mapView.setRegion(region, animated: true)

    let punkt = MapPin(name: "rand", street: "rand", type: "rand", postCode: "rand")
    punkt.coordinate = location

    mapView.addAnnotation(punkt)
}

func mapView(mapView: MKMapView!, didSelectAnnotationView view: MKAnnotationView!) {
    if view.annotation.isKindOfClass(MKUserLocation){
        return
    }

    var customView = (NSBundle.mainBundle().loadNibNamed("CustomCallout", owner: self, options: nil))[0] as! CustomCallout;

    var calloutViewFrame = customView.frame;
    calloutViewFrame.origin = CGPointMake(-calloutViewFrame.size.width/2 + 15, -calloutViewFrame.size.height);
    customView.frame = calloutViewFrame;

    let cpa = view.annotation as! MapPin

    view.addSubview(customView)

    var newRegion = MKCoordinateRegion(center:cpa.coordinate, span: span)
    self.mapView.setRegion(newRegion, animated: true)
}}

不幸的是,运行 应用显示了正确创建的具有正确位置的图钉,但来自 let punkt = MapPin(name: "rand", street: "rand", type: "rand", postCode: "rand") 的值未传递到视图,因此它看起来像这样。

您可以在 Swift 中像这样显示自定义标注视图。

func mapView(mapView: MKMapView!, didSelectAnnotationView view: MKPinAnnotationView!)
{
    if view.annotation.isKindOfClass(MKUserLocation){
        return
    }

    var customView = (NSBundle.mainBundle().loadNibNamed("SubView", owner: self, options: nil))[0] as CustomSubView;

    var calloutViewFrame = customView.frame;
    calloutViewFrame.origin = CGPointMake(-calloutViewFrame.size.width/2 + 15, -calloutViewFrame.size.height);
    customView.frame = calloutViewFrame;

    let cpa = view.annotation as CustomPointAnnotation
   //You can add set vlaues for  here
   //cpa.title
   //cpa.postCode
   //cpa.street

    view.addSubview(customView)

    //zoom map to show callout
    let spanX = 0.0000000000000001
    let spanY = 0.0000000000000001

    var newRegion = MKCoordinateRegion(center:cpa.coordinate, span: MKCoordinateSpanMake(spanX, spanY))
    self.map?.setRegion(newRegion, animated: true)
   }