UITableView didSelectRow while editing?

2020-05-19 06:38发布

I'm building an interface much like the built-in Weather application's flipside view, or the Alarms view of the Clock application in editing mode. The table view is always in editing mode, so the delete icon appears on the left side of each cell.

When the table view is in editing mode, my delegate doesn't receive didSelectRowAtIndexPath notifications. It receives accessoryButtonTappedForRowWithIndexPath notifications, but that's not what I want to do. I want my rows to stay selectable, even when the table view is in editing mode.

Any ideas on how I can accomplish this?

Thanks,

P.S. Hooray for the lifted NDA. =)

2条回答
再贱就再见
2楼-- · 2020-05-19 06:58

Set table.allowsSelectionDuringEditing to YES.

查看更多
Animai°情兽
3楼-- · 2020-05-19 07:03

You can also set this in the attributes inspector. Make sure you select the table view, not the view controller, and select "Single Selection During Editing" in the Editing dropdown:enter image description here

查看更多
登录 后发表回答