0
我想在用戶點擊函數didselectrowatindexdexpath中的單元格時點亮單元格。Tableview cell change cell backgroung image(png)on點擊
我想在用戶點擊函數didselectrowatindexdexpath中的單元格時點亮單元格。Tableview cell change cell backgroung image(png)on點擊
你有兩個選擇:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
方法(但我已經受夠了這種技術,Problem modifying UITableViewCell accessoryType in tableView:didSelectRowAtIndexPath:一些視覺上的干擾問題):- (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
,根據您的數據模型設置單元顯示。