在自定义UItableView的时候,当选择的style为Group时,往往在设置透明后分割线还在,为了去除,只要重新设置一个BackgroundView覆盖掉原来的即可
//取消分割线
UIView *view= [ [ [ UIView
alloc ] init ] autorelease];
[cell setBackgroundView :view];
//取消点击效果
cell.selectionStyle =
UITableViewCellSelectionStyleNone;
IOS UItableView得group风格如何去掉分割线问题,布布扣,bubuko.com
时间: 2024-10-01 04:24:09