繁体   English   中英

如何将特定元素从数组传递到另一个视图或 function? Swift

[英]How to pass specific element from array to another view or function? Swift

我正在从服务器加载数据并将其传递给数组。 该数据包括坐标、文本、图像等。它还包含名为“id”的变量(我考虑过为特定 id 排序数组,但不确定这是否是一个好的解决方案)。 此数据用于显示 map 上的标记。 我的任务是在单独的视图中显示此标记的详细信息。 如何告诉此详细信息屏幕选择了哪个标记或如何根据所选标记从数组中获取特定元素?

这是我创建标记:

for element in spots {
        let image = UIImage(named: element.type)

        let position = CLLocationCoordinate2D(latitude: element.coordinates.latitude, longitude:
            element.coordinates.longitude)
        marker = GMSMarker(position: position)
        marker.icon = image
        marker.map = mapView
    }

您可以使用 GMS 委托方法来检查点击了哪个标记。

for element in spots {
    let image = UIImage(named: element.type)

    let position = CLLocationCoordinate2D(latitude: element.coordinates.latitude, longitude:
        element.coordinates.longitude)
    marker = GMSMarker(position: position)
    marker.icon = image
    marker.map = mapView
    // add the element info to marker userData property 
    marker.userData = element
}


// function to check if which icon tapped

func mapView(_ mapView: GMSMapView, didTap marker: GMSMarker) -> Bool {

    // get the element info from marker
    let element = marker.userData
    //code to navigate to detail view
}

希望这会有所帮助!

这是一个非常笼统的问题,在 Swift / Cocoa 中的对象之间有很多方法可以传递数据,例如 segues、delegate、notifications、singleton 模式:或者只是直接使用依赖项初始化或不使用它

let separateView = SeparateView()
separateView.marker = marker // Note that you need a var defined in your separate view in order to set it sooner, marker is your marker defined from before
navigationController?.pushViewController(separateView, animated: true)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM