我正在尝试将NSMutableArray的值添加到表格单元格中。当我这样做时,细胞是空的。但是,如果我打印数组中的内容,则会打印数据。我无法获得关于细胞的数据。
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell : FinalTableViewCell = tableView.dequeueReusableCellWithIdentifier("cell") as! FinalTableViewCell
cell.headingLabel!.text = self.headingArray[indexPath.row] as String
var value: String = headingArray[indexPath.row] as String
println(value)
println(self.finalModelData.valueForKey(value))
cell.informationLabel!.text = self.finalModelData.valueForKey(value) as? String
return cell
}