I have a table view and custom TableViewCell with configure to allow multiple cell to be selected in editing mode and a check-mark will showing when I selected cell.
tableView.allowsMultipleSelectionDuringEditing = YES
I want to prevent the blue highlight when I selected my cell in editing mode.
I have try many ways like configure cell selection style but with this configure the "check-mark" won't be show in editing mode when cell selected.
cell.selectionStyle = UITableViewCellSelectionStyleNone;
I really need helps in this case. Thanks.