标签: iphone
我在里面
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
此时我有de indexPath和tableView。如何获取indexPath表示的UICell对象的引用?
感谢。
答案 0 :(得分:3)
UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];