ตามที่อธิบายไว้ในบันทึกประจำรุ่นของ Xcode 8 beta 6
ประเภทข้อผิดพลาดที่กำหนดโดย Swift สามารถให้คำอธิบายข้อผิดพลาดที่แปลเป็นภาษาท้องถิ่นโดยใช้โปรโตคอล LocalizedError ใหม่
ในกรณีของคุณ:
public enum MyError: Error {
case customError
}
extension MyError: LocalizedError {
public var errorDescription: String? {
switch self {
case .customError:
return NSLocalizedString("A user-friendly description of the error.", comment: "My error")
}
}
}
let error: Error = MyError.customError
print(error.localizedDescription) // A user-friendly description of the error.
คุณสามารถให้ข้อมูลเพิ่มเติมได้หากข้อผิดพลาดถูกแปลงเป็นNSError
(ซึ่งเป็นไปได้เสมอ):
extension MyError : LocalizedError {
public var errorDescription: String? {
switch self {
case .customError:
return NSLocalizedString("I failed.", comment: "")
}
}
public var failureReason: String? {
switch self {
case .customError:
return NSLocalizedString("I don't know why.", comment: "")
}
}
public var recoverySuggestion: String? {
switch self {
case .customError:
return NSLocalizedString("Switch it off and on again.", comment: "")
}
}
}
let error = MyError.customError as NSError
print(error.localizedDescription) // I failed.
print(error.localizedFailureReason) // Optional("I don\'t know why.")
print(error.localizedRecoverySuggestion) // Optional("Switch it off and on again.")
โดยการใช้CustomNSError
โปรโตคอลข้อผิดพลาดสามารถให้userInfo
พจนานุกรม (และยังdomain
และcode
) ตัวอย่าง:
extension MyError: CustomNSError {
public static var errorDomain: String {
return "myDomain"
}
public var errorCode: Int {
switch self {
case .customError:
return 999
}
}
public var errorUserInfo: [String : Any] {
switch self {
case .customError:
return [ "line": 13]
}
}
}
let error = MyError.customError as NSError
if let line = error.userInfo["line"] as? Int {
print("Error in line", line) // Error in line 13
}
print(error.code) // 999
print(error.domain) // myDomain
MyError
Error
LocalizedError
LocalizedError