我仍然是Swift的新手,所以你必须忍受我!
我已经从Parse的PFGeoPoint收集了我当前的位置坐标,它们是NSNumber类型。我现在需要将它们转换为CLLocation类型,以便我可以在地图视图中使用它们。有人可以告诉我该怎么做吗?
提前致谢。
答案 0 :(得分:0)
使用以下命令创建新的CLLocation
实例
var loc = CLLocation (latitude: <the lat>, longitude: <the lon>)
从<the lat>
开始,您将获得<the lon>
和PFGeoPoint
两个度数。