How do I, from a cell, get its indexPath in a UITableView?
indexPath
UITableView
I\'ve searched around stack overflow and google, but all the information is on t
You can try this simple tip:
on your UITableViewCell Class :
UITableViewCell
@property NSInteger myCellIndex; //or add directly your indexPath
and on your cellForRowAtIndexPath method :
cellForRowAtIndexPath
... [cell setMyCellIndex : indexPath.row]
now, you can retrieve your cell index anywhere