微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

无法在快速加载时使 indexpath.row 等于 0?

如何解决无法在快速加载时使 indexpath.row 等于 0?

我有一个需要 indexPath.row 的 tableview。单元格填满整个屏幕。

但是,当我打电话时:

indexPath.row 在 cellForRowAt 中,代码运行,创建所有单元格 (4),完成后 indexPath.row 为 3 而不是 0。理想情况下,我需要 indexPath.row 从 0 开始。然后移动一旦用户滚动表格视图就向上。有什么想法吗?

    func tableView(_ tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
        return 4
    }
    
    func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "tableCell",for: indexPath) as! FeedTableViewCell
        
print(indexPath.row)
        
        return cell
    }

    func tableView(_ tableView: UITableView,heightForRowAt indexPath: IndexPath) -> CGFloat {
        var bounds = tableView.frame
        return bounds.height
    }
    

//printout
0
1
2
3 -Screen appears. indexPath.row is at 3,but cell is displaying cell at indexPath.row 0.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。