views:

191

answers:

1

I have a list of things in a table view.

When a user tap a row, I increase score. I wish provide a way to clear the score for that row.

My first try is put the table in edit mode, show the delete button to that row and proceed. However, all the other rows get blocked and can't tap again the score or tap in the disclosure button.

So, obviously this is not the way. But then I don't see what to do. Any suggestion?

A: 

You could add a button to clear the row’s score as a subview of your table cell. I suppose you’d have to put it on the left side, though, since the disclosure button is on the right.

Ben Stiglitz