我試圖檢索當前用戶的當前結點,但是當我撥打geoPointForCurrentLocationInBackground:
時沒有任何反應。我無法從塊中記錄NSLog
,但其他NSLog
出現在控制檯中。無法檢索與geoPointForCurrentLocationInBackground的地點點
- (IBAction)whereCurrentUser:(id)sender {
[PFGeoPoint geoPointForCurrentLocationInBackground:^(PFGeoPoint *geoPoint, NSError *error) {
if (geoPoint) {
NSLog(@"GEOPOINT %@", geoPoint);
}
else
{
NSLog(@"ERROR");
}
}];
NSLog(@"BUTTON TAPPED");
}
我是否需要執行其他操作?文件很清楚,因此我無法弄清楚可能是什麼問題。
什麼是錯誤說? –