从Parse获得的反向地理编码坐标

时间:2015-08-27 17:15:16

标签: swift tableview reverse-geocoding

这是我目前的代码

let point = object["location"] as! PFGeoPoint
    let location = CLLocation(latitude: point.latitude, longitude:     point.longitude)
    cell.locationButton.text = "\((CLLocation(latitude: currLocation!.latitude, longitude: currLocation!.longitude)))"

它返回特定帖子的坐标,这很好。然而,我想要的是将其转换为该位置的名称。我是为另一个标签做的,但是我不太清楚如何为这个特定的标签做这个,因为我已经在cellforrowatindexpath函数中。

1 个答案:

答案 0 :(得分:0)

如果您想将坐标转换为城市名称,则必须实施CLGeocoder。请查看本教程:http://rshankar.com/get-your-current-address-in-swift/