Swift 2 Mapkit从用户位置获取城市

时间:2016-08-20 12:14:52

标签: swift2 location mapkit

是否可以使用Mapkit获取城市的名称并将其放入用户位置的字符串数组中? 我已经知道如何获取用户位置,因此您无需进入该位置。

1 个答案:

答案 0 :(得分:1)

是的,您可以使用CLGeocoder类尝试使用此代码

 CLGeocoder().reverseGeocodeLocation(CLLocation(latitude: newCoordinates.latitude, longitude: newCoordinates.longitude),             
     completionHandler: {(placemarks, error) -> Void in

            if error != nil {
                print("Reverse geocoder failed with error" + error!.localizedDescription)
                return
            }

            if placemarks!.count > 0 {
                let pm = placemarks![0]

                let c = pm.locality // city of place mark 

            }
            else {
                annotation.title = "Unknown Place"
                self.outletOfMapView.addAnnotation(annotation)
                print("Problem with the data received from geocoder")
            }
        })