这篇文章有两个问题。我有一个获取JSON数据的项目,并存储在NSArray中。数据将被提取并显示在UITableView上。
这是调试期间我的数据的屏幕截图,我已经验证我已成功获取数据。
我对这篇文章有2个问题。
var count = resultJSON.count
时,值为0? 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
}`