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
Try with this from your UITableViewCell:
NSIndexPath *indexPath = [(UITableView *)self.superview indexPathForCell: self];
EDIT: Seems this doesn't work on iOS 8.1.2 and further. Thanks to Chris Prince for pointing it.