Ich bin sehr neu zu Swift und versuchen, Wetter-App zu erstellen. Ich habe Protokoll func weatherManagerFailedToLoadCityWithError(error: ErrorType)
. In weatherManager.swift einige DelegierteErrorType-Protokoll in Wetter App
} else if status == 404 {
// City not found
if self.delegate != nil {
dispatch_async(dispatch_get_main_queue(), {() -> Void in
self.delegate?.weatherManagerFailerToLoadCityWithError(.InvalidResponse)
})
}
} else {
// Some other here?
if self.delegate != nil {
dispatch_async(dispatch_get_main_queue(), {() -> Void in
self.delegate?.weatherManagerFailerToLoadCityWithError(.MissingData)
})
}
}
haben Was soll ich i in diesem Codeblock
func weatherManagerFailedToLoadCityWithError(error: ErrorType) {
}
Jeder Vorschlag kann weatherController.swift?