美文网首页
iOS TableView 去除点击后产生的灰色背景

iOS TableView 去除点击后产生的灰色背景

作者: 彗星来的那一夜 | 来源:发表于2016-11-12 10:59 被阅读64次

直接上代码:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
}

相关文章

网友评论

      本文标题:iOS TableView 去除点击后产生的灰色背景

      本文链接:https://www.haomeiwen.com/subject/dwhqpttx.html