问题描述
我有一个需要 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 (将#修改为@)