从NSArray和NSArray.count中提取数据

时间:2015-11-04 10:59:56

标签: uitableview nsarray swift2

这篇文章有两个问题。我有一个获取JSON数据的项目,并存储在NSArray中。数据将被提取并显示在UITableView上。

这是调试期间我的数据的屏幕截图,我已经验证我已成功获取数据。

enter image description here

我对这篇文章有2个问题。

  1. 为什么当我var count = resultJSON.count时,值为0?
  2. 由于第一部分,我无法在桌面上显示resultJSON的数据。因此,为了“作弊”,我返回9以查看数据是否显示。但是我无法展示到我的桌子上。
  3. func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { //let count = resultJSON.count return 9 }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
    {
        let myCell = stockTableView.dequeueReusableCellWithIdentifier("cell1", forIndexPath: indexPath) as! UITableViewCell
        for jsonObjectString in self.resultJSON{
            myCell.textLabel?.text = jsonObjectString["name"] as! String
            myCell.detailTextLabel?.text = jsonObjectString["company"]! as! String
        }
    
        return myCell
    }`
    

0 个答案:

没有答案