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
|
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
| ||||
|
feedback
|
|
For an int
Creates Index of the item in node 0 to point to as per the reference. To use the indexPath in a
| ||||
|
feedback
|
|
Use below methods of NSIndexPath class.
Use as below and also Don't forget to
| |||
|
feedback
|
|
If you need a | |||
|
feedback
|
NSIndexPathfor? Do you need it for aUITableView? – albertamg Jun 23 '11 at 13:34rowon an index path created withindexPathWithIndex:. To create an index path you can callrowon it, you can useindexPathForRow:inSection:. – albertamg Jun 23 '11 at 14:20