I am currently using a folding cell library and when i close the cell, the labels(dates) and images(workout type) should reload.
tableView.beginUpdates()
UIView.performWithoutAnimation {
tableView.reloadRows(at: indexSet, with: .none)
}
tableView.endUpdates()
I have tried putting my reloadRows in a dispatchQueue.main.async call and everything else that is similar to mine question on stack overflow.