gpt4 book ai didi

ios - Swift - 从 map 注释执行 Segue

转载 作者:搜寻专家 更新时间:2023-10-31 22:48:41 24 4
gpt4 key购买 nike

我的 map 上有 1 个图钉。我需要将注释标题传递给另一个 UIView(在这种情况下是 ikinciEkran.swift)。但是我做不到。

这是我的代码的 segue 部分,我不知道如何对所选注释的标题进行 segue。

我只贴了相关部分的代码。

class MapViewController: UIViewController, CLLocationManagerDelegate, MKMapViewDelegate {

@IBOutlet weak var mapView: MKMapView!
@IBOutlet weak var lbl_Name: UILabel!
@IBOutlet weak var lbl_Address: UILabel!
@IBOutlet weak var lbl_Phone: UILabel!

var LocationManager = CLLocationManager()

var i = 0

var annotation:MKAnnotation!

override func viewDidLoad() {
super.viewDidLoad()

LocationManager.delegate = self
mapView.delegate = self

LocationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
LocationManager.requestWhenInUseAuthorization()
LocationManager.startUpdatingLocation()

let tekel1 = TekelClass(
title: "tekel1",
locationName: "Tekelİsim1",
coordinate: CLLocationCoordinate2D(latitude: 40.9400, longitude: 29.300520))

mapView.addAnnotation(tekel1)

}

func mapView(mapView: MKMapView!, annotationView view: MKAnnotationView!,
calloutAccessoryControlTapped control: UIControl!) {
if control == view.rightCalloutAccessoryView {
performSegueWithIdentifier("toTheMoon", sender: self)

}
}

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if (segue.identifier == "toTheMoon" )
{
var ikinciEkran = segue.destinationViewController as! DetailViewController

ikinciEkran.tekelName = "how to segue title of the selected pin"

}

}

最佳答案

您需要实现viewForAnnotation 方法。

例子。

func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {

if annotation is MKUserLocation {
return nil
}

let reuseId = "pin"

var pinView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId)
if pinView == nil {
pinView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
pinView?.canShowCallout = true

var rightButton: AnyObject! = UIButton.buttonWithType(UIButtonType.DetailDisclosure)
rightButton.titleForState(UIControlState.Normal)

pinView!.rightCalloutAccessoryView = rightButton as! UIView
}
else {
pinView?.annotation = annotation
}

return pinView
}

如果用户点击注释上的 (i) 按钮,将调用 calloutAccessoryControlTapped

enter image description here

引用。我的 MKMapView 示例代码 https://github.com/koogawa/MKMapViewSample

编辑

func mapView(mapView: MKMapView, annotationView view: MKAnnotationView, calloutAccessoryControlTapped control: UIControl) {
if control == view.rightCalloutAccessoryView {
performSegueWithIdentifier("toTheMoon", sender: view)
}
}

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if (segue.identifier == "toTheMoon" )
{
var ikinciEkran = segue.destinationViewController as! DetailViewController

ikinciEkran.tekelName = (sender as! MKAnnotationView).annotation!.title

}

}

关于ios - Swift - 从 map 注释执行 Segue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33053832/

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