gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 12:40:00 25 4
gpt4 key购买 nike

我想获取 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
}

最佳答案

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

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

关于ios - 如何在 UItableView 中获取数组的索引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39666916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com