MKMapItem不更新名称值

时间:2018-03-27 01:34:37

标签: ios iphone mapkit xcode9 mkmapitem

我从我的应用中启动iOS地图,但正在显示"未知地点"。

以下是如何将标题添加到该位置:

    @IBAction func directionsToLocation(_ sender: Any) {
        let destionationMapItem = MKMapItem(placemark: MKPlacemark(coordinate: self.annotation.coordinate))
        destionationMapItem.name = "Destionation"
        let startLocation = MKMapItem(placemark: MKPlacemark(coordinate: self.currectLocation))
        startLocation.name = "My current Location"
        MKMapItem.openMaps(with: [destionationMapItem,startLocation], launchOptions: [MKLaunchOptionsDirectionsModeKey:MKLaunchOptionsDirectionsModeTransit])
    }

MKMapItem 你们中的任何人都知道我做错了什么?或者为什么没有取名字的价值?

我非常感谢你的帮助。

0 个答案:

没有答案