这是代码:
import Alamofire
import SwiftyJSON
public protocol ResponseJSONObjectSerialiazable {
init?(json: SwiftyJSON.JSON)
}
extension Alamofire.Request {
public func responseObject<T: ResponseJSONObjectSerializable> (completionHandler:(NSURLRequest?, NSHTTPURLResponse?, Result<T>) -> Void) -> Self {
//Error: Use of undeclared type 'ResponseJSONObjectSerializable'
...
}
}
我正在使用Swift 2.0和Alamofire 2.0
最佳答案
这只是…liazable
与…lizable
的简单错字。
关于ios - 使用未声明的类型'ResponseJSONObjectSerializable',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33017093/