2016-07-01 9 views
1

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?

Antwort

0

Sie können es wie folgt tun:

private struct ErrorInformation { 
    static let Domain = "us.firmaName" 
    static let ServerNotFoundDomain = "\(ErrorInformation.Domain).notFound" 
} 

private extension NSError { 
    static func serverNotFound() -> NSError { 
     let userInfo = [ 
      NSLocalizedDescriptionKey: NSLocalizedString("Server Not Found", comment: ""), 
      NSLocalizedFailureReasonErrorKey: NSLocalizedString("The Server you are asking for is not available.", comment: ""), 
      NSLocalizedRecoverySuggestionErrorKey: NSLocalizedString("Please proof your URL bla-bla-bla.", comment: "") 
     ] 

    return NSError(domain: ErrorInformation.ServerNotFoundDomain, code: 404, userInfo: userInfo) 
} 

Und dann Ihre Funktionsaufruf:

weatherManagerFailedToLoadCityWithError(error: NSError.serverNotFound()) 

Wenn Sie möchten, dass Sie die Fehler in Ihrer Funktion umgehen kann:

func weatherManagerFailedToLoadCityWithError(error: ErrorType) { 
    print("Error description: \(error.userInfo. NSLocalizedDescriptionKey)") 
} 

Wenn Sie mehr Erklärungen wünschen, schreiben Sie einfach mehr Code.