What's the best way to create a table view with thumbnails (like the iPhone Photos app)?
The problem I have is the selection part. How do I get information about the selected thumbnail of a selected row? A delegate method like:
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath atPoint:(CGPoint)touchedPointInCell
...would have made it easy. But how do I do this when I don't get the x or column of a table view selection?
Thanks in advance,
/ Påhl