如何在UItableView中获取数组的索引号

时间:2016-09-23 18:00:33

标签: ios arrays swift uitableview indexing

我想得到索引的UI表格数量并将其用作表格单元格文本中的标题我的输出应该如下所示 输出

 Visit #1 
 Visit #2
 Visit #3 
 Visit #4
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
        let cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier("cell")! as UITableViewCell
        cell.textLabel?.text = "visit#\(visits[indexPath.row])"<-- this line 
        return cell
    }

2 个答案:

答案 0 :(得分:1)

您可以像这样使用indexPath.row:

cell.textLabel?.text= "Visit #\(indexPath.row + 1)"

答案 1 :(得分:1)

indexPath.row的值直接是表格视图单元格的索引编号。

cell.textLabel?.text = "visit#\(indexPath.row)"应该会给你预期的结果。