Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing an app which contains a table view. I want to appear the default delete button of table view (similar to swipe on delete) while tapping a right bar button in the navigation. IS it possible to do so ?

share|improve this question
Yes, in general it's possible, but we'll be able to help you with your particular situation better if you let us know what you've tried. – Tim Sep 2 '12 at 0:22
Thanks for your kindness, I have already done swipe on delete by using the following tableview delegate function. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { – Vishnu Kumar. S Sep 2 '12 at 0:27

1 Answer

up vote 2 down vote accepted

You can make the delete indicators of all cells to appear by calling

[myTableView setEditing:YES animated:YES];

from your button's handler. If you want the indicator to appear only on the currently selected cell, you can do this:

NSIndexPath selection = [myTableView indexPathForSelectedRow];
UITableViewCell *selectedCell = [myTableView.dataSource tableView:myTableView cellForRowAtIndexPath:selection];
[selectedCell setEditing:YES animated:YES];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.