以下是代码:
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
答案 0 :(得分:0)
这只是一个简单的拼写错误…liazable
与…lizable
。