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?
views:
559answers:
1
+4
A:
-[UITableViewDelegate accessoryButtonTappedForRowWithIndexPath:]
is only called when the accessoryType
of the cell is set to UITableViewCellAccessoryDetailDisclosureButton
.
JoostK
2009-12-22 07:44:12