tableview 选中一行后,不显示选中颜色 千万不要将tableview的allowsSelection设置成NO,那样的话可能导致tableview不能响应点击动作。 应该使用:cell.selectionStyle = UITableViewCellSelectionStyleNone; 这 ...
分类:
其他好文 时间:
2017-10-09 13:08:50
阅读次数:
195
在项目中遇到一个很奇怪的问题,就是在使用Xib创建的cell的时候,为了使图片之间无缝的拼接在一起,设置tableView的属性为Plain 设置了cell的selectionStyle属性为 UITableViewCellSelectionStyleNone,但是总是有一条细线,并没有隐藏掉,于是 ...
分类:
移动开发 时间:
2016-12-19 18:36:20
阅读次数:
262
cell.selectionStyle = .none //取消点击变色 table?.separatorInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0) //设置cell 下边线 位置 table?.separatorStyle ...
分类:
其他好文 时间:
2016-10-12 16:35:28
阅读次数:
130
1. UITableView //去除tableviews的点击效果 //去除tableviews的点击效果 cell.selectionStyle = UITableViewCellSelectionStyleNone; //隐藏tableView的分割线 cell.tableView.separ ...
分类:
其他好文 时间:
2016-09-27 13:07:59
阅读次数:
118
cell.selectionStyle=UITableViewCellSelectionStyleNone;
分类:
其他好文 时间:
2016-09-01 00:43:47
阅读次数:
118
1.系统默认的颜色设置 [objc] view plain copy //无色 cell.selectionStyle = UITableViewCellSelectionStyleNone; //蓝色 cell.selectionStyle = UITableViewCellSelectionSt ...
分类:
其他好文 时间:
2016-05-23 21:02:07
阅读次数:
195
//设置 cell点击 背景色 cell.selectionStyle = UITableViewCellSelectionStyleDefault; cell.selectedBackgroundView = [[UIView alloc] init]; cell.selectedBackgrou ...
分类:
其他好文 时间:
2016-05-17 17:20:35
阅读次数:
195
[cpp] view plain copy 1.系统默认的颜色设置 [cpp] view plain copy [cpp] view plain copy [cpp] view plain copy //无色 cell.selectionStyle = UITableViewCellSelectio ...
分类:
其他好文 时间:
2016-05-16 19:50:09
阅读次数:
144
1.系统默认的颜色设置 //无色 cell.selectionStyle = UITableViewCellSelectionStyleNone; //蓝色 cell.selectionStyle = UITableViewCellSelectionStyleBlue; //灰色 cell.sele
分类:
其他好文 时间:
2016-03-02 14:51:57
阅读次数:
116
自定义UITableviewCell 当设置cell.selectionStyle = UITableViewCellSelectionStyleNone; 在代理方法- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath...
分类:
移动开发 时间:
2015-12-21 15:32:01
阅读次数:
182