访问tableView.visibleCells导致标题重新加载

时间:2019-02-27 20:27:18

标签: ios uitableview cocoa-touch

当我遍历.grouped UITableView的可见单元格时,还将再次调用节标题委托方法(标题标题和标题高度)。

示例:当以下循环运行时

for cell in self.tableView.visibleCells {
    cell.doSomething();
}

以下方法称为:

func tableView( tableView : UITableView,  titleForHeaderInSection section: Int)->String

发生这种情况的目的是什么?我既没有更新标题,也没有(直接)要求重新绘制布局。

0 个答案:

没有答案