0

所以我正在尝试获取 JSON 文件,当我将它打印到控制台时,它似乎一切正常。

var dta:JSON = nil
override func viewDidLoad() {
    super.viewDidLoad()
    let url = NSURL(string: "http://www.vikinglogue.com/api/get_posts/")
    var request = NSURLRequest(URL: url!)
    var data = NSURLConnection.sendSynchronousRequest(request, returningResponse: nil, error: nil)
    if data != nil {
        dta = JSON(data: data!)
        println(dta)
    }

    self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell:UITableViewCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as UITableViewCell
    cell.textLabel?.text = self.dta["count"].stringValue
    println(self.dta["count"].stringValue)
    return cell
}

虽然,“println(self.dta["count"].stringValue)” 应该打印出 12 时并没有打印出任何内容。我做错了什么?

4

0 回答 0