PFGeoPoint.geoPointForCurrentLocationInBackground
当我向后端发送内容时,尝试使用解析来获取当前位置。代码看起来像
NSLog("Before block")
PFGeoPoint.geoPointForCurrentLocationInBackground {
(geoPoint: PFGeoPoint!, error: NSError!) -> Void in
NSLog("inside block")
if !error {
// do something with the new geoPoint
}
}
而且我从来没有在控制台上得到我的内部块。我安装了核心位置框架,它允许我做类似的事情
let point = PFGeoPoint(latitude:40.0, longitude:-30.0)
如果它有帮助,当我进行上述呼叫时,我不会被要求提供用户位置。