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

Posted 奉灬孝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS TableView 去除点击后产生的灰色背景相关的知识,希望对你有一定的参考价值。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"activityTableViewCell";
    activityTableViewCell *cell = (activityTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
         cell = [[activityTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    
    cell.selectionStyle=UITableViewCellSelectionStyleNone;//设置cell点击效果
    
    return cell;
}

  或者

//重写 cell 点击事件
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
    //当离开某行时,让某行的选中状态消失
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
}

  

以上是关于IOS TableView 去除点击后产生的灰色背景的主要内容,如果未能解决你的问题,请参考以下文章

页面小知识

去除系统部分属性触摸是出现的色值

iOS UISearchDisplayController 防止 tableview 改变背景颜色(背景保持灰色)

安卓html元素被点击时产生的边框怎么去掉

移动端网站或APP点击后出现闪动或灰色背景

安卓html元素被点击时产生的边框怎么去掉