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.superview indexPathForCell:self];