Delegate must respond to locationManager:didFailWithError: even though implemented didFailWithError method

Delegate must respond to locationManager:didFailWithError: even though implemented didFailWithError method

出于某种原因 Xcode 认为我没有实现 CLLocationManagerDelegate 协议的 didFailWithError 方法

我看不出我做错了什么,因为我从另一个 上直接复制了这个 didFailWithError 方法已针对 Swift 3 进行了更新。所以我不不明白为什么 Xcode 认为我没有实施 didFailWithError

任何见解将不胜感激!

代码

class OptionsViewController: UIViewController,
    CLLocationManagerDelegate {
var locationManager: CLLocationManager = CLLocationManager()

    override func viewDidLoad() {
//Ask user for location
        locationManager.delegate = self
        locationManager.desiredAccuracy = kCLLocationAccuracyBest
        
        //Use users current location if no starting point set
        if CLLocationManager.locationServicesEnabled() {
            if CLLocationManager.authorizationStatus() == CLAuthorizationStatus.authorizedWhenInUse
                || CLLocationManager.authorizationStatus() == CLAuthorizationStatus.authorizedAlways {
                locationManager.requestLocation()
            }
            else{
                locationManager.requestWhenInUseAuthorization()
            }
        }
        else{
            //Alert user to open location service, bra bra bra here...
        }
    }

func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) {
        print("error:: \(error)")
    }
    
    func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) {
        print("didChangeAuthorization")
        if status == CLAuthorizationStatus.authorizedWhenInUse
            || status == CLAuthorizationStatus.authorizedAlways {
            locationManager.requestLocation()
        }
        else{
            //other procedures when location service is not permitted.
        }
    }
    
    func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        print("Did update location called")
//        let locValue:CLLocationCoordinate2D = manager.location!.coordinate
//        print("locations = \(locValue.latitude) \(locValue.longitude)")
        if locations.first != nil {
            print("location:: (location)")
        }
        
    }

Aaaandd 我意识到它是 b/c 我需要使用特定类型的 Error(特别是 Swift.Error) 这是 didFailWithError:

的正确方法声明
func locationManager(_ manager: CLLocationManager, didFailWithError error: Swift.Error) {