I need delete row 1 of a table in a function i have defined. In order to use deleteRowAtIndexPath you must use an IndexPath with a section and row defined. How can I create an indexpath like this?

An array with the int {1} as it's only member will crash; the nslog message states that the section needs to be defined as well.

*Edit -> Code relating to cell delete:

    NSIndexPath *myIP = [[NSIndexPath alloc] indexPathForRow:0 inSection:0];
    NSArray *myArray = [[NSArray alloc] initWithObjects:myIP, nil];
//  [self.tableView beginUpdates];
    [self.tableView deleteRowsAtIndexPaths:myArray withRowAnimation:UITableViewRowAnimationFade];
//  [self.tableView endUpdates];
link|improve this question

71% accept rate
feedback

2 Answers

up vote 77 down vote accepted

Use [NSIndexPath indexPathForRow:inSection:] to quickly create an index path.

link|improve this answer
1  
Thanks for the reply. The program still crashes though -- NSLog reports: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSIndexPath indexPathForRow:inSection:]: unrecognized selector sent to instance – CDStelly Jan 28 '10 at 20:26
1  
please show your source code. – Ben Gottlieb Jan 28 '10 at 20:56
I originally figured it to be an IndexPath problem. Is there something else going on? Seems i might be using the delete incorrectly.. – CDStelly Jan 29 '10 at 16:23
-[NSIndexPath indexPathForRow:inSection:] isn't in my documentation. Is there an answer that uses documented APIs? (I admit it's a bit weird that it's not in there. WTH?!) – Olie Mar 26 '10 at 1:19
Found my answer at stackoverflow.com/questions/181432/… -- it's "documented" in UITableView.h – Olie Mar 26 '10 at 1:22
feedback

indexPathForRow is a class method!

The code should read:

NSIndexPath *myIP = [NSIndexPath indexPathForRow:0 inSection:0] ;
link|improve this answer
Jean-Francois....awesome thanks ;-) – user7865437 Mar 14 '11 at 10:13
feedback

Your Answer

 
or
required, but never shown

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