博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决tableViewCell分割线不到左边界的问题
阅读量:5057 次
发布时间:2019-06-12

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

 

在tableView控制器的.m文件中任何位置加入以下两个方法即可解决/** *  下面两个方法解决cell分割线不到左边界的问题 */-(void)viewDidLayoutSubviews {        if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {        [self.tableView setSeparatorInset:UIEdgeInsetsZero];            }    if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)])  {        [self.tableView setLayoutMargins:UIEdgeInsetsZero];    }    }/** * 这个方法和上面一个方法解决cell分割线不到左边界的问题 */-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPat{    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {        [cell setLayoutMargins:UIEdgeInsetsZero];    }    if ([cell respondsToSelector:@selector(setSeparatorInset:)]){        [cell setSeparatorInset:UIEdgeInsetsZero];    }}

 

转载于:https://www.cnblogs.com/ithongjie/p/4882390.html

你可能感兴趣的文章
调整GDI显示方向
查看>>
node 单个表加条件查询
查看>>
单例模式
查看>>
Sublime Text 3 绝对神器
查看>>
enableEventValidation
查看>>
[GO]ticker的使用
查看>>
Linux限制端口
查看>>
C++变量初始化
查看>>
node学习心得
查看>>
顺序表存储空间连续问题
查看>>
牛客练习赛46 E 华华和奕奕学物理 (树状数组)
查看>>
JSP实现在项目在网页上查询
查看>>
zencart 网站空白的解决方案
查看>>
【9927】庆功会
查看>>
poi读excel小例子
查看>>
在一台呆滞设置两个listener(Oracle)
查看>>
KDE-SDK(KDE斥地工具)引见
查看>>
Informix IDS 11系统办理(918检验)认证指南,第 7 局部: IDS复制(22)
查看>>
Informix IDS 11系统操持(918考试)认证指南,第 7 部门: IDS复制(17)
查看>>
[优化算法] 拉丁超立方采样与基于优化的均匀采样
查看>>