Selecting row while UITableView is in editing mode

IosIphoneUitableviewSelectRow

Ios Problem Overview


I have a UITableView where when I put it in editing mode, I want selective rows to be selectable, however, they are not. Is there a way I can force them to be selectable?

Ios Solutions


Solution 1 - Ios

Set the UITableView property allowsSelectionDuringEditing to YES.

Solution 2 - Ios

Set "Editing" property to "Single Selection During Editing"

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionskylerlView Question on Stackoverflow
Solution 1 - Iosgerry3View Answer on Stackoverflow
Solution 2 - IosayalcinView Answer on Stackoverflow