将自定义 MKAnnotationView 添加到 MKPointAnnotation
Adding a custom MKAnnotationView to a MKPointAnnotation
我正在尝试使用 swift 创建一个 iOS 应用程序,它会在地图视图上创建注释。在大多数情况下,我已经完成了,但是,我正在尝试创建一个自定义视图,当用户点击图钉时弹出该视图。这是放置注释的代码:
let point = MKPointAnnotation()
//This isn't the actual location
let location = CLLocationCoordinate2DMake(1, 1)
point.coordinate = location
point.title = "Title"
point.subtitle = "Description"
map.addAnnotation(point)
map.centerCoordinate = point.coordinate
let mapCamera = MKMapCamera()
mapCamera.centerCoordinate = location
mapCamera.altitude = 300
mapCamera.heading = 180
self.map.camera = mapCamera
此代码将图钉放置在正确的位置。但是,假设我有一个 MKAnnotationView 对象,它有一个像这样的红色背景:
let pointDesc = MKAnnotationView()
pointDesc.backgroundColor = UIColor.redColor()
如何将该视图添加到 MKPointAnnotation。本来我以为 map.addSubview(pointDesc)
可以。但事实并非如此。
有人有什么建议吗?
您需要在自己设计的视图中实现 viewForAnnotation
。这是我的应用程序中的一个代码片段,它创建了一个带有红色删除按钮的简单视图。您可能会了解如何根据您的需要实施它:
func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {
if annotation is PinAnnotation { // PinAnnotation is my custom annotation class
let pinAnnotationView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: "myPin")
pinAnnotationView.pinColor = .Purple
pinAnnotationView.draggable = true
pinAnnotationView.canShowCallout = true
pinAnnotationView.animatesDrop = true
let deleteButton = UIButton.buttonWithType(UIButtonType.Custom) as! UIButton
deleteButton.frame.size.width = 44
deleteButton.frame.size.height = 44
deleteButton.backgroundColor = UIColor.redColor()
deleteButton.setImage(UIImage(named: "trash"), forState: .Normal)
pinAnnotationView.leftCalloutAccessoryView = deleteButton
return pinAnnotationView
}
return nil
}
我正在尝试使用 swift 创建一个 iOS 应用程序,它会在地图视图上创建注释。在大多数情况下,我已经完成了,但是,我正在尝试创建一个自定义视图,当用户点击图钉时弹出该视图。这是放置注释的代码:
let point = MKPointAnnotation()
//This isn't the actual location
let location = CLLocationCoordinate2DMake(1, 1)
point.coordinate = location
point.title = "Title"
point.subtitle = "Description"
map.addAnnotation(point)
map.centerCoordinate = point.coordinate
let mapCamera = MKMapCamera()
mapCamera.centerCoordinate = location
mapCamera.altitude = 300
mapCamera.heading = 180
self.map.camera = mapCamera
此代码将图钉放置在正确的位置。但是,假设我有一个 MKAnnotationView 对象,它有一个像这样的红色背景:
let pointDesc = MKAnnotationView()
pointDesc.backgroundColor = UIColor.redColor()
如何将该视图添加到 MKPointAnnotation。本来我以为 map.addSubview(pointDesc)
可以。但事实并非如此。
有人有什么建议吗?
您需要在自己设计的视图中实现 viewForAnnotation
。这是我的应用程序中的一个代码片段,它创建了一个带有红色删除按钮的简单视图。您可能会了解如何根据您的需要实施它:
func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {
if annotation is PinAnnotation { // PinAnnotation is my custom annotation class
let pinAnnotationView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: "myPin")
pinAnnotationView.pinColor = .Purple
pinAnnotationView.draggable = true
pinAnnotationView.canShowCallout = true
pinAnnotationView.animatesDrop = true
let deleteButton = UIButton.buttonWithType(UIButtonType.Custom) as! UIButton
deleteButton.frame.size.width = 44
deleteButton.frame.size.height = 44
deleteButton.backgroundColor = UIColor.redColor()
deleteButton.setImage(UIImage(named: "trash"), forState: .Normal)
pinAnnotationView.leftCalloutAccessoryView = deleteButton
return pinAnnotationView
}
return nil
}