in my project I was just adding this line of code to add a little checkmark next to the cell that the user selects. (In did select row at function)
let currentCell = tblView.cellForRow(at: indexPath)! as UITableViewCell
currentCell.accessoryType = .checkmark
The currentCell is printing fine. For example, when I print out the cell, it gives me the cell's frame; text; clipsToBounds; autoresize; layer:0>. When I add this line of code though, as expected, it does add check mark on that cell, but also every other 15 cells, starting from that cell- and it looks like this
Does anyone know why this is happening, and how I could fix this?