UITableView Cell IndexPath
- by Reonarudo
Hello,
Can anyone tell me how can I get a cell IndexPath?
I was saving the IndexPath in the tableView: cellForRowAtIndexPath: method but this only loads when the cell is viewed and I need to know its index path on the viewDidLoad method. this resulted in a null value because as I said it only loads its value after the cell was viewed once.
Thank you.
EDIT
The intention is being able to jump to a specific cell that has its specific number but its not linear with the sections and rows count.