is there any way to hide "-" and keep only selection?
When I switch the tableview in mode isediting and allowsMultipleSelection, there is a delete button instead of selection choice
is there any way to hide "-" and keep only selection?
When I switch the tableview in mode isediting and allowsMultipleSelection, there is a delete button instead of selection choice
Could you explain more ? And possibly show screen capture.
You can enable a multi-select option in table view.
tableView.allowsMultipleSelectionDuringEditing = true
This allows you to select multiple rows with a checkbox.
MaheshSheliya > : I already use it
self.tableview.isEditing = true
self.tableview.allowsMultipleSelection = true
self.tableview.allowsMultipleSelectionDuringEditing = true
and after scroll, everything is ok???? So I need to hidden minus button when I select : self.tableview.isEditing = true