我的应用程序中有一个mapView,应该显示200多个注释图钉。到目前为止,我只添加了不到100个引脚,这让我感到奇怪。有没有更聪明的方式来展示它们?此刻的代码确实很长,我担心它会更长。在下面,您可以看到我如何添加引脚(仅一个引脚的示例)。我该如何以更聪明的方式做到这一点?

let first = Artwork(title: "First annotation",
                              locationName: "Tryk for rute",
                              discipline: "Butik",
                              coordinate: CLLocationCoordinate2D(latitude: 55.931326, longitude: 12.284186))

map.addAnnotation(first)




这些代码片段是为大约100个注释引脚编写的-必须有更好的方法!

希望你能帮助我,谢谢!

最佳答案

我在这里假设注释的数据未存储在数组中的对象中,并且您有100个示例代码副本。

如果信息是静态的,则可以将信息包括在属性列表(plist)中。

您的plist可能看起来像这样:

<dict>
    <key>Locations</key>
    <array>
        <dict>
            <key>Title</key>
            <string>First annotation</string>
            ... more information here
        </dict>
        <dict>
            <key>Title</key>
            <string>Second annotation</string>
            ... more information here
        </dict>
    </array>
</dict>
</plist>


然后,您可以加载plist并迭代locations数组,以将注释添加到地图。像这样:

func addAnnotations()
    {
        // load your plist
        if let path = NSBundle.mainBundle().pathForResource("StaticInformation", ofType: "plist") {
            if let dict = NSDictionary(contentsOfFile: path) as? Dictionary<String, AnyObject> {
                // get your static locations information as an array
                if let locations = dict["Locations"] as? Array<Dictionary<String, AnyObject>> {
                    // iterate your locations
                    for (index, location) in locations.enumerate() {

                        let title = location["Title"] as? String
                        // obtain the information needed from the location dict

                        // create your annotation
                        let first = Artwork(title: title,
                                            locationName: ...,
                                            discipline: ...,
                                            coordinate: ...)

                        map.addAnnotation(first)
                    }
                }
            }
        }
    }


该代码未经测试,对不起。但希望您能明白。

10-07 20:29