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.


// 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)

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.