当前位置: 代码迷 >> 综合 >> iOS tableView删除cell或者section 时候跳动问题
  详细解决方案

iOS tableView删除cell或者section 时候跳动问题

热度:42   发布时间:2023-10-26 13:52:58.0

以下代码能解决这个问题

    self.tableView.estimatedRowHeight = 0;self.tableView.estimatedSectionFooterHeight = 0;self.tableView.estimatedSectionHeaderHeight = 0;
  相关解决方案