As a UITableView is allowsMultipleSelectionDuringEditing = true
,
the default selection style is a light-blue look on a selected cell:
I set the cell contentView.backgroundColor = .whiteColor()
when the cell got highlighted
/ selected
,
consequently make the circle-checkmark area remain light-blue but not the whole cell:
TL;DR
I need the whole cell to be white as it's multiple-selected,
which means I cannot set the cell's selectionStyle = .None
.
Is there a way to achieve this?