博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tableView 隐藏多余分割线,tableView分割线增加15像素
阅读量:4965 次
发布时间:2019-06-12

本文共 462 字,大约阅读时间需要 1 分钟。

1 //隐藏分割线 2 [self setExtraCellLineHidden:_tableView]; 3 //隐藏多余分割线 4 -(void)setExtraCellLineHidden: (UITableView *)tableView 5 { 6     UIView *view = [UIView new]; 7     view.backgroundColor = [UIColor clearColor]; 8     [tableView setTableFooterView:view]; 9 }10 11
//增加15像素分割线 if ([_tableView respondsToSelector:@selector(setSeparatorInset:)]) {                [_tableView setSeparatorInset:UIEdgeInsetsZero];  }

 

转载于:https://www.cnblogs.com/kwame/p/3979181.html

你可能感兴趣的文章
1-18-2 LVM管理和ssm存储管理器使用&磁盘配额 (二)
查看>>
Centos7 系统更改apache默认网站目录(解决You don't have permission to access / on this server问题)...
查看>>
Centos7 安装python环境
查看>>
修改apt,pip,npm为国内镜像源
查看>>
python 虚拟环境安装
查看>>
python 实现多层列表拆分成单层列表
查看>>
欢迎页面
查看>>
sqlserver cdc实现数据增量抽取
查看>>
论分治与归并思想
查看>>
关于缩短cin时间的方法
查看>>
Romantic HDU - 2669(扩欧模板题)
查看>>
素数筛法(Eratosthenes筛法)
查看>>
Security Guards (Gym - 101954B)( bfs + 打表 )
查看>>
Arranging Your Team HDU - 3720 【DFS】
查看>>
UVA - 1152 --- 4 Values whose Sum is 0(二分)
查看>>
【I'm Telling the Truth】【HDU - 3729】 【匈牙利算法,DFS】
查看>>
整除分块思想
查看>>
【Isabella Message】 【SPOJ - ISAB】【HDU-4119】【模拟】【矩阵的旋转】
查看>>
【畅通工程 HDU - 1232 】【并查集模板题】
查看>>
【统计难题】【HDU - 1251】【map打表或字典树】【字典树模板】
查看>>