在didSelectRowAtIndexPath函数中更改UITableViewCellAcessory

时间:2010-02-08 14:32:59

标签: iphone xcode uitableview didselectrowatindexpath

有没有办法更改UITableViewCellAccessory功能中的didSelectRowAtIndexPath

我需要将“play”-icon更改为“stop”-icon ..

谢谢:)

2 个答案:

答案 0 :(得分:0)

您可以使用方法

获取指向相关表格单元格的指针
cellForRowAtIndexPath:

并将作为参数传入的indexPath传递给didSelectRowAtIndexPath:,然后更改它的accessoryView属性。像这样:

UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
[cell setAccessoryView:stopIconView];

stopIconView可能是UIImageView或其他什么。

答案 1 :(得分:0)

可能值得查看UITableViewCell中的accessoryView属性,看看是否可以添加图像。