如果我UITableViewCell
使用 say进行子类MySubclassedCell
化并且它包含一些标签和图像,我将如何访问该didSelectRowAtIndexPath
方法中子类化单元格的内容?
通常(没有子类化)我会这样做:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
}
然后从那里去。替换MySubclassedCell
不起作用,那么如果我需要访问子类单元格的属性怎么办?