Tableview单元格在单击时更改单元格背景图像(png)

时间:2011-02-01 11:26:46

标签: iphone

当用户点击函数didselectrowatindexpath中的单元格时,我想突出显示单元格。?

1 个答案:

答案 0 :(得分:0)

您有两种选择:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    // do stuff with cell
    //
}
  • 在您的数据模型中设置适当的状态,然后调用[tableView reloadData],这将调用- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath,您可以根据数据模型设置要显示的单元格。