iphone - 对细胞的引用

时间:2010-12-26 15:40:44

标签: iphone

我在里面

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

此时我有de indexPath和tableView。如何获取indexPath表示的UICell对象的引用?

感谢。

1 个答案:

答案 0 :(得分:3)

UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];