1. 程式人生 > >UITableViewcell選中後怎麼去掉背景灰色

UITableViewcell選中後怎麼去掉背景灰色

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
在這個函式裡寫上cell.selectionStyle = UITableViewCellSelectionStyleNone;就ok了