up vote 0 down vote favorite
1
share [g+] share [fb]

I'm trying to set the editing style property of a UITableViewCell in a Cocoa Touch (iPhone) app.

For an example of what this looks like, check out the Contacts app, where you can see the little green plus sign to the left of some of the cells.

The UITableViewCell inspector in Interface Builder has an editing style drop down, but it doesn't seem to do anything.

Likewise there is a CodeSense completion of an undocumented method called -setEditingStyle: for a UITableViewCell that doesn't seem to work either.

Is this a setting in the table view data source? Has anyone outside of Apple gotten this to work?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 9 down vote accepted

It is indeed a method in the UITableViewDelegate:

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

Now I get a row of green plus signs!

link|improve this answer
Actually, this is a method of UITableViewDelegate, not UITableViewDataSource. – Greg Maletic Nov 25 '11 at 23:22
feedback

Below is code gives you clear Idea about how to user Editing Style

 - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        if(indexPath.row == 0)
        { 
            return  UITableViewCellEditingStyleInsert;
        }
        else
        {
            return UITableViewCellEditingStyleDelete;
        }
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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