1.cell.selectionStyle = UITableViewCellSelectionStyleNone;该方法缺点是虽然cell可以被用户选中后,但不会被突出显示
2.-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//选中单元格,过几秒自动消失
[tableView deselectRowAtIndexPath:indexPath animated:NO];
}
3.直接设置单元格的状态
3. ?