0

I have an UIImageViewset as the background to a custom cell (prototype cell) .How can I change the image in the image view , when the cell is selected?

4

2 回答 2

4

如果您想在单元格选择中更改 imageview 的图像,那么您需要在 tableview 的委托方法中执行此操作:

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

如果您有一个自定义单元格并将其背景设置为图像视图,那么您还必须在自定义单元格的类中创建其属性,并通过上述委托中的该属性更改图像视图的图像。

于 2012-05-11T14:00:58.403 回答
3

您是否尝试过属性 highlightImage ?

于 2012-05-11T14:02:05.647 回答