iphone - a reference to a cell
I am inside
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
At 开发者_如何学Pythonthis point I have de indexPath and the tableView. How do I get a reference to the UICell object the indexPath represents?
thanks.
UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
精彩评论