1

我对 iOS 开发很陌生,所以请温柔一点。

我正在为一个项目使用AlamofireSwiftyJSON库来获取和解析服务器上的 JSON 文件。我还使用本教程获得了一个带有几个单元格“单元格 1”“单元格 2”“单元格 3”的 UITableView。

使用我编写的 SwiftyJson 插件:

request(.GET, url, parameters: parameters)
        .responseJSON { (req, res, json, error) in
            if(error != nil) {
                NSLog("Error: \(error)")               
                println(req)
                println(res)
            }
            else {
                NSLog("Success: \(url)")
                var json = JSON(json!) 

                var indexValue = 0           
                for (index, item) in enumerate(json) {
                    println(json[index]["Brand"]["Name"])

                    var indvItem = json[index]["Brand"]["Name"].stringValue

                    self.items.insert(indvItem, atIndex: indexValue)

                    indexValue++

                }

            }
    }

println() 行工作并显示正确的项目:

println(json[index]["Brand"]["Name"])

但是我似乎无法让他们进入牢房。

在文件的顶部,根据 UITableView 教程的说明,我有这一行:

var items = ["Cell 1", "Cell 2", "Cell 3"]

没有错误,单元格仅保留其原始值。如何获取 JSON 响应以更新 UITableView 中的单元格?

编辑:

 @IBOutlet var tableView: UITableView!

var items = ["Cell 1", "Cell 2", "Cell 3"]


func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.items.count;
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell:UITableViewCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as UITableViewCell

    cell.textLabel.text = self.items[indexPath.row]

    return cell
}

func tableView(tableView: UITableView!, didSelectRowAtIndexPath indexPath: NSIndexPath!) {
    println("You selected cell #\(indexPath.row)!")
}
4

1 回答 1

2

您需要在解析数据后重新加载表,所以类似于 -

request(.GET, url, parameters: parameters)
    .responseJSON { (req, res, json, error) in
        if(error != nil) {
            NSLog("Error: \(error)")               
            println(req)
            println(res)
        }
        else {
            NSLog("Success: \(url)")
            var json = JSON(json!) 

            var indexValue = 0           
            for (index, item) in enumerate(json) {
                println(json[index]["Brand"]["Name"])

                var indvItem = json[index]["Brand"]["Name"].stringValue
                self.items.insert(indvItem, atIndex: indexValue)

                indexValue++
            }
                self.tableView.reloadData()  <-----------------------
        }
}
于 2015-02-04T05:01:09.323 回答