如何在Swift中将NSNumber转换为CLLocation

时间:2014-12-28 12:36:11

标签: ios xcode swift

我仍然是Swift的新手,所以你必须忍受我!

我已经从Parse的PFGeoPoint收集了我当前的位置坐标,它们是NSNumber类型。我现在需要将它们转换为CLLocation类型,以便我可以在地图视图中使用它们。有人可以告诉我该怎么做吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

使用以下命令创建新的CLLocation实例

var loc = CLLocation (latitude: <the lat>, longitude: <the lon>)

<the lat>开始,您将获得<the lon>PFGeoPoint两个度数。