cell点击之后变灰

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;// 这句话写了就ok了
}