Swift2.0 - 从元组数组中创建tableView

时间:2015-08-19 16:13:34

标签: arrays json tableview swift2

我有一个由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具有音乐会的内容。

有什么想法吗?感谢

0 个答案:

没有答案