我有一个由JSON创建的元组数组。
typealias TagAndLocation = (tag: String, location: String)
var resultTuples = [TagAndLocation]()
for (_, subJSON) in json {
let Tag = subJSON["Tag"].string!
let Location = subJSON["Location"].string!
let tagloc = (tag: Tag, location: Location)
resultTuples.append(tagloc)
}
然后我会用
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "CellConcert")
//PROBLEM IS HERE. I want the indexPath.row to be the position of the array of tupple
cell.textLabel?.text = resultTuples.[indexPath.row][]
return cell
}
基本上我希望我的tableView具有音乐会的内容。
有什么想法吗?感谢