gpt4 book ai didi

ios - 一般添加注解

转载 作者:行者123 更新时间:2023-11-28 05:36:53 26 4
gpt4 key购买 nike

我一直在尝试一般地向 mapView 添加注释,但在这样做时遇到了麻烦。当我的意思是一般时,我的意思是不具体声明它们。我看过很多程序,当他们想要添加多个注释时,他们会专门声明它们,例如 Annotation1 =、Annotation 2 =。如何在不指定数量的情况下创建一堆。就像我试图根据我的字符串数组的长度和里面的内容将一定数量的它们添加到 map 中一样。希望这是有道理的。

最佳答案

如果我对您的理解正确,您不想根据项目的长度对 x 行进行硬编码。这是否解决了您的问题?

import MapKit

struct Annotation {
let title: String
let latitude: CLLocationDegrees
let longitude: CLLocationDegrees
}

let map = MKMapView()
let array = [Annotation(title: "Peru", latitude: -723232, longitude: 1242424), Annotation(title: "London", latitude: 2942924, longitude: 2424)]

array.forEach({
let annotation = MKPointAnnotation()
annotation.title = $0.title
annotation.coordinate = CLLocationCoordinate2D(latitude: $0.latitude, longitude: $0.longitude)
map.addAnnotation(annotation)
})

关于ios - 一般添加注解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58357854/

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