gpt4 book ai didi

swift - MKPointAnnotation 转到另一个 View

转载 作者:行者123 更新时间:2023-11-30 12:40:49 28 4
gpt4 key购买 nike

我想知道当我点击标题时如何转到另一个 View MKPointAnnotation

func addPin(lat:Double, lng:Double) {
let testPin = CLLocationCoordinate2D(latitude: lat, longitude: lng)
let dropPin = MKPointAnnotation()
dropPin.coordinate = testPin
dropPin.title = "123456"
mapView.addAnnotation(dropPin)
}

我需要使用标识符“更多”进行连接

最佳答案

请在您的代码中添加此委托(delegate)方法并检查

func mapView(mapView: MKMapView, didSelectAnnotationView view: MKAnnotationView){
performSegue(withIdentifier: "PlaceDetail", sender: nil)
}

关于swift - MKPointAnnotation 转到另一个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42244096/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com