将SwiftyJSON中的元素添加到Swift中的URL数组中

时间:2016-10-04 01:12:44

标签: ios swift swift3 alamofire swifty-json

我正在使用Alamofire检索网址图片列表。响应是在JSON中我使用SwiftyJSON来解析和打印每个元素。我希望将URL添加到URL数组中。以下是我使用的代码

var newArray = [URL(string: "http://www.tummyvision.com/users/uploads/gijovarghese141@gmail.com/photos/4.jpg")]

        Alamofire.request("http://www.tummyvision.com/users/login/get-images.php", parameters: parameters).responseData { response in
            let json = JSON(data: response.result.value!)
            for i in 0..<json.count
            {
                print(json[i]) // prints the correct url
                self.urlArray.append(json[i])
            }
        }

但它给了我以下错误:

enter image description here

1 个答案:

答案 0 :(得分:2)

尝试使用JSON的arrayValue属性访问数组,您还需要将String Url转换为URL对象,然后再将其添加到URL数组中。

if let urls = json.arrayValue {
    for url in urls {
        self.urlArray.append(URL(string:url))
    }
}