私は認可が正しいかどうかをチェックする方法を作成しましたが、認可が正しいにもかかわらずこれが場所を取り出すことを意味するわけではありません。私はdidFailWithError
でこれをチェックしようとしましたが、それは2回呼び出されたようです。どのようなエラーメッセージを出すのが難しくなりますか?エラー処理didStartUpdatingLocation
class func turnOn() {
if (CLLocationManager.locationServicesEnabled()){
print("begin updating location")
self.sharedManager.locationManager.startUpdatingLocation()
}
}
、その後は、私はこれを呼び出し、二回
func locationManager(manager: CLLocationManager, didFailWithError error: NSError) {
print(error)
}
でエラーメッセージが(でも二度あれば)、その後は何ですか? – Larme
'エラードメイン= kCLErrorDomainコード= 0"(ヌル) "' 'エラードメイン= kCLErrorDomainコード= 0"(ヌル) "' –