我想得到索引的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
}
答案 0 :(得分:1)
您可以像这样使用indexPath.row:
cell.textLabel?.text= "Visit #\(indexPath.row + 1)"
答案 1 :(得分:1)
indexPath.row
的值直接是表格视图单元格的索引编号。
写cell.textLabel?.text = "visit#\(indexPath.row)"
应该会给你预期的结果。