Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7581683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:15:17+00:00 2026-05-30T18:15:17+00:00

I have an editable tableView . when i click on the bar button the

  • 0

I have an editable tableView. when i click on the bar button the table becomes editable (a delete button will appear in front of each cell).

When i also slide a cell in the tableview, the delete button gets displayed. I need to know the method that gets executed when i slide to the cell to delete the record of that cell.

I am hoping to change the Edit barbutton to done when the user slides the cell. So how can i do this programatically.

Sorry and i don’t have any code to demonstrate.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T18:15:18+00:00Added an answer on May 30, 2026 at 6:15 pm

    This is the line you need to add in viewDidLoad to add edit button which gets converted to Done when you touch it.

    self.navigationItem.leftBarButtonItem = self.editButtonItem;
    

    This is the description for editButtonItem:
    Returns a bar button item that toggles its title and associated state between Edit and Done.

    This is the DataSource method which gets called when you Click Edit

    - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
    
        // Delete code goes here. This is from Core data sample code to delete record. You can implement your own code here.
    
        NSManagedObjectContext *context = [fetchedResultsController managedObjectContext];
        [context deleteObject:[fetchedResultsController objectAtIndexPath:indexPath]];
    
        NSError *error;
        if (![context save:&error]) {
            // Update to handle the error appropriately.
            NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
            exit(-1);  // Fail
        }
    
     }   
    
    }
    

    I hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For my iPhone app, I have an editable (for delete) table view. I'd like
I have made a table containing an array editable (you can delete rows) by
I have an editable, grouped tableView, but swipe to delete doesn't work. It looks
I have a editable gridview. When I click on edit button corresponding to a
I have a simple table view which is editable. All I need the user
I have a listview with lists lines of an invoice (Which are editable), each
I have a UITableView that is editable. I am commiting changes via: - (void)tableView:(UITableView
I have a Core Data backed table view, that show a list of editable
I have a tableView that I want to allow editing and delete rows. I
I want to know is there any way to have editable table in ASP.net

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.