iOS

您所在的位置:网站首页 iOS穿透点击的uitableview iOS

iOS

2024-07-16 18:14| 来源: 网络整理| 查看: 265

链接:https://www.jianshu.com/p/e37e729935f6

在点击cell得时候,默认会有一个选中状态的背景颜色,一般是灰色的,怎么取消呢? 分享一下

方法一:

在 Table view data source 的 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath方法里直接调用[tableView deselectRowAtIndexPath:indexPath animated:NO]; 就可以了。

就是这样

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:NO]; }

OK,效果完成,之后点击cell抬起手指之后,就没有那个选中的灰色背景颜色了。

方法二:

直接在-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 方法里面加上一句:cell.selectionStyle = UITableViewCellSelectionStyleNone;也能达到效果。

设置UITableViewCell的选中背景颜色的方法:

UIView *view = [[UIView alloc]init]; view.backgroundColor=[UIColor redColor]; cell.selectedBackgroundView=view;


【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3