gpt4 book ai didi

ios - 无法使用类型的参数列表调用 'responseArray'

转载 作者:行者123 更新时间:2023-11-30 14:06:00 25 4
gpt4 key购买 nike

我正在使用 Alamofire,配合 ObjectMapper,在升级到 Swift 2.0 之前一切都很顺利,现在,

对于以下签名:

public func responseArray<T: Mappable>(completionHandler: ([T]?, ErrorType?) -> Void) -> Self

我正在打电话

 Alamofire.request(.GET, URL, parameters: nil)
.responseArray { (response: [MyObject]?, error: NSError?) in

}

并收到以下错误:

Cannot invoke 'responseArray' with an argument list of type (([MyObject]?, NSError?) -> ())

任何帮助将不胜感激。

最佳答案

试试这个。

Alamofire.request(.GET, URL, parameters: nil)
.responseArray { (response: [MyObject]?, error) in
//your process
}

关于ios - 无法使用类型的参数列表调用 'responseArray',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32399915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com