6

I want to perform different action, not delete objects but archive them. When user swiped on tableViewCell I need to show "Archive" instead of delete. change "Delete" button text and color to something else.

How do I customize "Delete mode" appearance?

Rod
  • 1,975
  • 4
  • 19
  • 23

1 Answers1

26

Apparently in 3.0 and later there is such method:

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_3_0);
Rod
  • 1,975
  • 4
  • 19
  • 23