Basically I am storing an index of an array in a NSInteger. I now need it as an NSIndexpath, I'm struggling to see and find a way to convert my NSInteger to NSIndexpath so I can reuse it.

Thanks dan

link|improve this question

65% accept rate
What do you need the NSIndexPath for? Do you need it for a UITableView? – albertamg Jun 23 '11 at 13:34
It's used when calling a update statement for sqlite. I think I now converted to NSIndexPath but I need NSIndexPath.row and this throws an error. Any ideas? – Dan Jun 23 '11 at 14:09
You can not call row on an index path created with indexPathWithIndex:. To create an index path you can call row on it, you can use indexPathForRow:inSection:. – albertamg Jun 23 '11 at 14:20
Changed my logic (wish had several hours ago....) thanks thou guys – Dan Jun 23 '11 at 14:55
feedback

3 Answers

up vote 6 down vote accepted

For an int index:

NSIndexPath *path = [NSIndexPath indexPathWithIndex:index];

Creates Index of the item in node 0 to point to as per the reference.

To use the indexPath in a UITableView, the more appropriate method is

NSIndexPath *path = [NSIndexPath indexPathForRow:row inSection:section];
link|improve this answer
Thanks. Can I still do path.row or am I getting my eiders crossed? – Dan Jun 23 '11 at 14:15
feedback

Use below methods of NSIndexPath class.

+ (id)indexPathWithIndex:(NSUInteger)index;
+ (id)indexPathWithIndexes:(NSUInteger *)indexes length:(NSUInteger)length;
- (id)initWithIndex:(NSUInteger)index

Use as below and also Don't forget to release myIndexPath object after using.

NSIndexPath *myIndexPath = [[NSIndexPath alloc] initWithIndex:[myIntObj intValue]];
link|improve this answer
feedback

If you need a NSIndexPath for a UITableView, you can use indexPathForRow:inSection: (reference). Index paths passed to table view must contain exactly two indices specifying the section and row. An index path created with indexPathWithIndex: only contains one index and won't work with a table view.

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.