iphone -- 取消TableViewCell的选中状态

孟乐
2023-12-01
在UITableView里面,选择了某一个cell以后,如何取消该cell的选中状态,可以使用如下方法:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
    // 取消选中状态
    [tableView deselectRowAtIndexPath:indexPath animated:NO]; 
}
 类似资料: