我收到此錯誤:更新位置時出錯操作無法完成。 (kCLErrorDomain誤差爲0)
Error while updating location The operation couldn’t be completed. (kCLErrorDomain error 0.)
我的問題是,這個錯誤顯示幾乎每次我運行模擬器,它不斷顯示我的錯誤整體時間模擬器運行(每當我給視圖控制器一個地圖它顯示我這個錯誤)。最奇怪的是,有時這個錯誤是零,一切都很好。在一個實際的設備上它工作正常,但是當我想嘗試一些位置(在模擬器上)時,我必須重新啓動模擬器大約7次,直到它工作。
這是Info.plist的:
我的位置是自定義的:
這是我的代碼:
func locationManager(manager: CLLocationManager, didFailWithError error: NSError) {
print("Error while updating location " + error.localizedDescription)
let alertController = UIAlertController(title: "Sorry!", message: "We were unable to find your location", preferredStyle: UIAlertControllerStyle.Alert)
let defaultAction = UIAlertAction(title: "OK", style: .Default, handler: nil)
alertController.addAction(defaultAction)
presentViewController(alertController, animated: true, completion: nil)
print("Error...")
}
我的問題是,爲什麼有時只有作品? 謝謝:)
您可以點擊此鏈接。 http://stackoverflow.com/questions/6032976/didfailwitherror-error-domain-kclerrordomain-code-0-the-operation-couldn-t-be –
我已經看到了這個問題,我找不到解決方案:/ –
然後選擇模擬器菜單>調試>位置>設置自定義或選擇任何0r檢查互聯網連接 – Sandy