在UITableView里面,选择了某一个cell以后,点击立刻取消该cell的选中状态,可以使用如下方法:\x0d\x0a\x0d\x0a-(void)tableView:(UITableView*)tableViewdidSelectRowAtIndexPath:(NSIndexPath*)indexPath\x0d\x0a{\x0d\x0a//somefunctions\x0d\x0a......\x0d\x0a\x0d\x0a//取消选中状态\x0d\x0a[tableViewdeselectRowAtIndexPath:indexPathanimated:NO];\x0d\x0a}
试试 [tableView deselectRowAtIndexPath:indexpath animated:YES];