不能打电话给Alamofire.request(...)

时间:2018-02-07 06:03:27

标签: ios swift alamofire

这是我的Pod文件...

album_covers[n].style.transition = "transform 1.0s linear 0s";

我只能打电话给AlamofireVersionNumber:

enter image description here

1 个答案:

答案 0 :(得分:5)

这是关于这个库的一个问题,但是如果你添加了所需的代码,它就可以了。为Alamofire添加此代码并运行:

Alamofire.request("http://api.androidhive.info/contacts/").responseData { (response) -> Void in

       let responseJson = String(data : response.result.value!, encoding : String.Encoding.utf8)
       print(responseJson)
 }