在UITableview中显示图像

时间:2017-05-01 10:16:02

标签: json swift uitableview swift3 haneke

我正在尝试在tableview中显示来自api的图像,但我没有得到图像或任何东西。 ImageTableViewCell只有图像的出口。

import UIKit
import Alamofire
import SwiftyJSON
import Haneke

class  SlideViewController: UIViewController , UITableViewDelegate , UITableViewDataSource {

@IBOutlet weak var tableview : UITableView!

 var images = [String]()




override func viewDidLoad() {
    super.viewDidLoad()

    tableview.delegate = self
    tableview.dataSource = self

    getJSON()


}


func numberOfSections(in tableView: UITableView) -> Int {
    return 0
}


func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
     return images.count
}



 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCell(withIdentifier: "imageCell", for: indexPath) as! ImageTableViewCell


    let url = URL(string: images[indexPath.row])

    cell.images.hnk_setImage(from: url!)

    return cell
}




func getJSON() {

    let url =  "http://localhost:8000/api/hello"
    request(url ,  method: .get,  encoding: JSONEncoding.default  )
        .responseJSON { response in

            if let value: AnyObject = response.result.value as AnyObject? {
                //Handle the results as JSON
                do{
                    if let albums = try JSONSerialization.jsonObject(with: response.data!, options: []) as? [String: Any],
                        let pics = albums["pic"] as? [Any] {

                        self.images = pics as! [String]

                        for kick in pics {
                            self.images.append(kick as! String)

                        }

                    }

                }catch {
                    print("Error with Json: \(error)")
                }
                DispatchQueue.main.async {
                    self.tableview.reloadData()
                }

    }
  }
   }

   }

任何帮助将不胜感激。我尝试了很多方法,但这似乎很简单,也很容易跟进

3 个答案:

答案 0 :(得分:1)

您的JSON响应为Dictionary而不是Array,其中包含pic数组。因此,请将jsonObject(with:options:)的结果输入[String:Any]而不是[[String: AnyObject]]

do{
    if let albums = try JSONSerialization.jsonObject(with: response.data!, options: []) as? [String: Any], 
         let pics = albums["pics"] as? [Any] {

        images = pics.flatMap{ $0 as? String }
    }
}catch {
    print("Error with Json: \(error)")
}
DispatchQueue.main.async {
    self.tableview.reloadData()
}

答案 1 :(得分:1)

检查以下代码

var images = [String]()

func getJSON() {

    let url =  "http://localhost:8000/api/hello"
    request(url ,  method: .get,  encoding: JSONEncoding.default  )
        .responseJSON { response in

            if let value: AnyObject = response.result.value as AnyObject? {
                //Handle the results as JSON
                do{
                    let albums = try JSONSerialization.jsonObject(with: response.data!, options:.allowFragments) as! [[String: AnyObject]]
                    print(albums)
                    if let pics = album["pic"]
                    {
                       for album in pics
                       {
                            images.append(album)
                       }
                    }

                }catch {
                    print("Error with Json: \(error)")
                }
                self.tableview.reloadData()

            }
    }
}

答案 2 :(得分:0)

您必须至少有一个要显示的部分。

func numberOfSections(in tableView: UITableView) -> Int {
    return 1
}