Swift,如何在单击时从自定义注释中获取信息
Posted
技术标签:
【中文标题】Swift,如何在单击时从自定义注释中获取信息【英文标题】:Swift, How to get information from a custom annotation on clicked 【发布时间】:2016-05-19 10:27:20 【问题描述】:我有以下自定义注释类:
import UIKit
import MapKit
class LocationMapAnnotation: NSObject, MKAnnotation
var title: String?
var coordinate: CLLocationCoordinate2D
var location: Location
init(title: String, coordinate: CLLocationCoordinate2D, location: Location)
self.title = title
self.coordinate = coordinate
self.location = location
我正在将注释加载到这样的地图视图中:
for i in 0..<allLocations.count
//Add an annotation
let l: Location = self.allLocations[i] as! Location
let coordinates = CLLocationCoordinate2DMake(l.latitude as Double, l.longitude as Double)
let annotation = LocationAnnotation(title: l.name, coordinate: coordinates, location: l)
mapView.addAnnotation(annotation)
我想从选定的注释中获取Location
对象。目前我有这个方法,当我点击注释时会调用它,但我不确定如何从注释中检索特定对象。
func mapView(mapView: MKMapView, didSelectAnnotationView view: MKAnnotationView)
print("Annotation selected")
//performSegueWithIdentifier("locationInfoSegue", sender: self)
谢谢。
【问题讨论】:
【参考方案1】:您可以在 didSelectAnnotationView 中获取您的 Annotation,然后它会为您提供 MKAnnotationView。这个 MKAnnotationView 将 MKAnnotation 作为一个对象。
func mapView(mapView: MKMapView, didSelectAnnotationView view: MKAnnotationView)
println("Annotation selected")
if let annotation = view.annotation as? LocationMapAnnotation
println("Your annotation title: \(annotation.title)");
【讨论】:
是的!非常感谢它刚刚修复它! 如果让 annotation = view.annotation as? LocationMapAnnotation 这是一个有效的比较吗?在注解(MKAnnotation)和“LocationMapAnnotation”(模型类 - Mappable)之间 @SyedUzairAhmed 这不是比较,而是在 swift 中进行类型转换的标准方法。 docs.swift.org/swift-book/LanguageGuide/TypeCasting.html以上是关于Swift,如何在单击时从自定义注释中获取信息的主要内容,如果未能解决你的问题,请参考以下文章
Swift 如何从自定义 uicollectionviewcell 中获取数据?
如何在模块化的 java 11 应用程序中动态加载 Libreoffice jar,而不从自定义类加载器中获取 ClassCastException
Android:从自定义列表视图中单击的按钮获取列表视图项目
如何从自定义 UITableViewCell 获取值到 ViewController?