在prase

时间:2016-01-13 15:21:25

标签: ios swift geolocation

我的Geopoint脚本正在保存到一个新组中,它正在调用" position"在Geopoint。

我想要它做的是将其保存到用户并将其设置在列"位置"应用程序的用户。

我也有CLLocation。

这是我的剧本。

  override func viewDidLoad() {
        super.viewDidLoad()



        PFGeoPoint.geoPointForCurrentLocationInBackground {

            (geoPoint: PFGeoPoint?, error : NSError?) -> Void in
    if error == nil {

        PFUser.currentUser()!.setValue(geoPoint, forKey: "location")
        PFUser.currentUser()?.saveInBackground()
        }
    }

在线:

PFUser.currentUser()!.setValue(geoPoint, forKey: "location")

我收到错误说

  

主题1:EXC_BAD_INSTRUCTION(代码= EXC_1386_INVOP,子代码= 0x0)

我是swift和xcode的新手,所以如果我需要提供更多信息,请告诉我

0 个答案:

没有答案