通常我以这种方式获取我选择的单元格:
- (void)tableView:(UITableView *)table didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomCell *cell = (CustomCell*) [table cellForRowAtIndexPath:indexPath];
}
但是在我正在使用的代码中,我的表格视图中可能有多种单元格。如何获取所选单元格的类(例如,如果是CustomCell
或CustomCell2
)?