在我的TableView 中,我根据 xib 文件加载单元格。该单元格在背景中有一个imageView。当用户将手指放在一行上时如何更改图像?我不知道didSelectRowAtIndexPath,因为这意味着用户点击了该行。
问问题
25 次
2 回答
0
希望这有帮助
- (BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath{
// update your image here
return YES;
}
于 2013-08-03T14:34:25.267 回答
0
在您的单元子类上实现该- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated
方法并根据highlighted
参数的值更改那里的图像。
于 2013-08-03T14:32:43.857 回答