It is an essential part of software development to handle errors correctly and iOS development is no different. It is important to reduce the impact of the error to your user and inform your user clearly if an action is required.
Here is the extension that you will need to add to your project and the implementation of how you would present the UIAlertController within a UIViewController class.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Extension | |
extension UIAlertController { | |
convenience init(with error: Error) { | |
var title: String! | |
var message: String! | |
if let error = error as? LocalizedError, let errorDescription = error.errorDescription { | |
title = errorDescription | |
if let recoverySuggestion = error.recoverySuggestion { | |
message = recoverySuggestion | |
} | |
} else { | |
let nativeError = error as NSError | |
title = nativeError.localizedDescription | |
message = nativeError.localizedRecoverySuggestion ?? "" | |
} | |
self.init(title: title, message: message, preferredStyle: .alert) | |
addOKAction() | |
} | |
func addOKAction() { | |
addAction(UIAlertAction(title: NSLocalizedString("OK", comment: ""), style: .cancel, handler: nil)) | |
} | |
} | |
// Implementation | |
let alert = UIAlertController(with: error) | |
self.present(alert, animated: true, completion: nil) |