gpt4 book ai didi

ios - 是否有回调方法告诉 UITableViewController 何时完成创建 UITableView 的单元格?

转载 作者:行者123 更新时间:2023-11-28 06:26:34 25 4
gpt4 key购买 nike

是否有一个 iOS/Swift 3.0 回调方法可以告诉 UITableViewController 何时完成加载(创建单元)UITableView(在调用 .reloadData 之后) TableView (在 Swift 中)?

(或替代方法)

最佳答案

您正在寻找的功能不存在,但根据您上面的评论,是否有可能让每个单元格(或它作为属性的某些模型对象)进行 API 预加载调用?这样,只会为可见单元格预加载数据。当新单元格滚动到 View 中时,它们的数据将依次加载。

例如,在您的单元格中:

class MyCell: UITableViewCell {

var someObject: MyObject {
didSet {
someObject?.loadData()
}
}
}

在你的 View Controller 中:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCell(withIdentifier: "MyCell", for: indexPath) as! "MyCell"
cell.someObject = myObjects[indexPath.row]
return cell
}

通过这种方式,您只需为 View 中的单元格加载数据。如果您要添加:

func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
cell.someObject.cancelLoading()
}

如果不需要,您可以确保不再加载单元格中不再显示的对象。

关于ios - 是否有回调方法告诉 UITableViewController 何时完成创建 UITableView 的单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41685827/

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