vote up 4 vote down star
2

The class method to create an index path with one or more nodes is:

+ (id)indexPathWithIndexes:(NSUInteger *)indexes length:(NSUInteger)length

How do we create the "indexes" required in the first parameter?

The documentation listed it as Array of indexes to make up the index path but it is expecting a (NSUinteger *).

To create an index path of 1.2.3.4, is it simply an array of [1,2,3,4] ?

flag

3 Answers

vote up 6 vote down check

You are correct. You might use it like this:

NSUInteger indexArr[] = {1,2,3,4};

NSIndexSet *indexSet = [NSIndexPath indexPathWithIndexes:indexArr length:4];
link|flag
vote up 4 vote down

You assumption is correct. It's as simple as a C array of NSUInteger. The length parameter is the number of elements in the indexes array.

Arrays in C are often identified as a pointer (in this case NSUInteger *) with a length parameter or a known terminator such as \0 for C strings (which is just a char array).

link|flag
vote up 0 vote down

You can also use from the /NSIndexPath UIKit Additions/ (UITableView.h)

  • +(NSIndexPath *)indexPathForRow:(NSUInteger)row inSection:(NSUInteger)section
link|flag

Your Answer

Get an OpenID
or

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