views:

50

answers:

1

Using -didSelectRowAtIndexPath on a UITableViewCell, I fire off a UIActionSheet and the cell becomes selected. How would I target the specific cell to animate it's deselection upon the action sheet being sent a Cancel message?

+1  A: 

UIActionSheetDelegate provides the ability to know when your UIActionSheet was and/or will be dismissed. So you would provide your UIActionSheet a delegate which would deselect the table's selection using deselectRowAtIndexPath:animated:

Chris Gummer