我有一些简单的代码:
class TestTableViewController: UITableViewController {
override func numberOfSections(in tableView: UITableView) -> Int {
print("toto")
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)
cell.textLabel?.text = "Hello world"
return cell
}
}
我在想,当tableView加载或我们要求重新加载时,函数numberOfSections
只被调用一次。
但在我的控制台中使用此代码我有6个“toto”。
有人在进入函数numberOfSections
时可以向我解释吗?
答案 0 :(得分:0)
在加载tableview之前调用numberOfSections。但是当你重新加载数据或删除或插入或更新部分和单元格时,我也会被调用。您提供的代码不足以说明导致numberOfSections被调用6次的原因