0
在我的TableView我基於xib文件加載單元格。該單元在後臺具有imageView。用戶將手指放在一行上時如何更改圖像?我不介意didSelectRowAtIndexPath,因爲它意味着用戶點擊該行。如何在突出顯示上更改單元格內容
在我的TableView我基於xib文件加載單元格。該單元在後臺具有imageView。用戶將手指放在一行上時如何更改圖像?我不介意didSelectRowAtIndexPath,因爲它意味着用戶點擊該行。如何在突出顯示上更改單元格內容
在您的單元格子類上實現- (void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated
方法,並根據參數highlighted
的值更改圖像。
希望這有助於
- (BOOL)tableView:(UITableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath{
// update your image here
return YES;
}