iOS15-tableView中cell出现抖动解决办法

tableview布局错乱,总是返回不同cell,而且后台进入前台时会自动刷新可见的cell

iOS15中Apple修改了tableview的加载方式,会对cell和数据进行预取,导致实际显示页面错乱,设置isPrefetchingEnabled = false禁用预取即可

if #available (iOS 15.0, *) {

    UITableView.appearance().isPrefetchingEnabled = false

}

你可能感兴趣的:(iOS15-tableView中cell出现抖动解决办法)