使用Swift

时间:2019-01-15 08:12:21

标签: json uitableview swift3

我是一个快速的新手,甚至是我能做的最简单的事情。例如,我想在UItableview中显示来自JSON文件的名称列表,但我不能这样做。

具体来说,我的JSON返回以下内容:

[{"id_centro":"3","0":"3","nombre":"Colegio Vistarreal","1":"Colegio Vistarreal"},{"id_centro":"1","0":"1","nombre":"IES ITC Sistemas","1":"IES ITC Sistemas"}]

我已经通过以下方式实现了UITableViewController:

import UIKit

class TCentrosController: UITableViewController {

    var centrosList = [String] ()

    override func viewDidLoad() {
        super.viewDidLoad()

        Dologin()

    }


    func Dologin(){

        let url = URL (string: "https://neton.es/WS_neton/lista_centros.php")

        let session = URLSession.shared

        let request = NSMutableURLRequest (url: url!)
        request.httpMethod = "POST"

        let task = session.dataTask(with: request as URLRequest, completionHandler: {

            (data, response, error) in
            guard let _:Data = data else{

                return
            }

            do{

                let json = try JSONSerialization.jsonObject(with: data!, options: []) as! [[String:Any]]

                if json.isEmpty{

                    DispatchQueue.main.async {

                        let alertController = UIAlertController(title: "Atención", message: "No hay centros disponibles", preferredStyle: .alert)


                        let yesAction = UIAlertAction(title: "OK", style: .default)
                        { (action ) -> Void in
                            print("Centros no operativos")
                        }

                        alertController.addAction(yesAction)

                        self.present(alertController, animated: true, completion: nil)

                    }

                    return

                //Si el json no está vacío, sigue por aquí
                }else{

                    let nombreCentro:String = json[1]["nombre"] as! String             
                    self.centrosList.append(nombreCentro)

                }
            }

            catch{
                print("Error")
            }


        })
        task.resume()

    }


  override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        return centrosList.count
    }


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

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

        cell.labelCell.text = centrosList[indexPath.row]

        return cell
    }
}

但是它不会通过屏幕向我返回任何信息。实际上,如果我进行打印(centrosList.count),它会告诉我零次五次。

如您所见,我没有太多想法,而且我肯定有多个我看不到的错误。顺便说一下,我正在用Swift 3编程

谢谢,感谢您的帮助

1 个答案:

答案 0 :(得分:1)

似乎从服务器接收到的数据没有重新加载到tableView中。

要遵循的一般步骤是

  1. 设置委托,tableView的数据源。

  2. 实现所有必需的委托和dataSource方法。

  3. 从服务器获取数据并将其存储到数组

  4. 重新加载tableView。

因此,您应该在下面添加此行

self.centrosList.append(nombreCentro)

添加此

DispatchQueue.main.async {
  self.tableView.reloadData()
}

尝试并分享结果。