我有一个JSON数据,我想进入UITable。数据是动态的,因此表应该在每次加载视图时更新。有人能帮忙吗?

{
data =     (
                {
            id = 102076330;
            name = "Vicky Arora";
        }
    )
}

最佳答案

试试这个。。。。
当您收到响应时,获取整个字典数组

if let arr = response["data"] as? [[String:String]] {
      YourArray = arr
      // Define YourArray globally
}

然后在tableview单元格中,cellForRowAtIndexPath方法
if let name = YourArray[indexpath.row]["name"] as? String{
      label.text = name
}
//Same You can done with id

别忘了设置行数
 override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    // #warning Incomplete method implementation.
    // Return the number of rows in the section.
    return YourArray.count
}

07-24 09:52
查看更多