2015-09-04 58 views
0

我使用Alamofire,與ObjectMapper的參數列表,事情如此順利升級到雨燕2.0,現在前,不能援引「responseArray」型

爲以下特徵:

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?) ->())

任何幫助將超級讚賞。

回答

0

試試這個。

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