作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一种情况,我试图重写 NSError
来为我提供一个我将要重复使用的错误实例。
在我更新 Xcode 并转换为 Swift 2 之前,我的代码一直有效。
public class NAUnexpectedResponseTypeError: NSError {
public convenience init() {
let messasge = "The object fetched by AFNetworking was not of an expected type."
self.init(
domain: "MyDomain",
code: 6782,
userInfo: [NSLocalizedDescriptionKey: messasge]
)
}
}
编译器说 无法覆盖已标记为不可用的“init”
。通过这样做,我能够破解它:
public class NAUnexpectedResponseTypeError: NSError {
public class func error() -> NSError {
let message = "The object fetched by AFNetworking was not of an expected type."
return NAUnexpectedResponseTypeError(
domain: "MyDomain",
code: 6782,
userInfo: [NSLocalizedDescriptionKey: message]
)
}
}
所以,我的问题是:
init
方法?编辑:
我想出了另一个我更喜欢的解决方法,而不是使用类方法的解决方法。我仍然不高兴我不能覆盖空的 init
方法。
public class NAUnexpectedResponseTypeError: NSError {
public convenience init(message: String?) {
var errorMessage: String
if let message = message {
errorMessage = message
} else {
errorMessage = "The object fetched by AFNetworking was not of an expected type."
}
self.init(
domain: "MyDomain",
code: 6782,
userInfo: [NSLocalizedDescriptionKey: errorMessage]
)
}
}
最佳答案
由于 NSError
是不可变的,因此没有理由为同一数据创建多个实例。只需创建一个常量实例:
let NAUnexpectedResponseTypeError = NSError(domain: "MyDomain",
code: 6782,
userInfo: [NSLocalizedDescriptionKey: "The object fetched by AFNetworking was not of an expected type."]
)
如果你遇到的情况不是常量,那么扩展 NSError
而不是子类几乎总是更好。例如:
extension NSError {
class func MyError(code code:code, message: String) -> NSError {
return NSError(domain: "MyDomain",
code: code,
userInfo: [NSLocalizedDescriptionKey: message])
}
}
这种扩展(作为一个类别)在 ObjC 中有很长的历史,并且是一个很好的模式,可以带到 Swift 中(如果你不能轻易使用 enum
ErrorTypes,它会更好 swift )。
在很多情况下,我发现仅仅拥有一个顶层函数比扩展 NSError
更容易。例如:
private func makeError(code code:code, message: String) -> NSError {
return NSError(domain: "MyDomain",
code: code,
userInfo: [NSLocalizedDescriptionKey: message])
}
(就个人而言,当我必须使用 NSError
时,我总是在 Swift 中使用这些类型的函数。在 ObjC 中,我通常在 NSError
上使用类别。不知道为什么我改变了,但感觉更自然。)
关于ios - "Cannot override ' init ' which has been marked unavailable"防止覆盖空 init,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32749209/
我是一名优秀的程序员,十分优秀!