views:

559

answers:

1

I've implemented didSelectRowAtIndexPath and accessoryButtonTappedForRowWithIndexPath never seems to fire. However, didSelectRowAtIndexPath always fires, even when I click the accessory. Shouldn't these two be exclusive?

+4  A: 

-[UITableViewDelegate accessoryButtonTappedForRowWithIndexPath:] is only called when the accessoryType of the cell is set to UITableViewCellAccessoryDetailDisclosureButton.

JoostK