博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决UITableViewCell separator左侧不贴边
阅读量:5214 次
发布时间:2019-06-14

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

分两步

1:设置tableView

if ([_tableView respondsToSelector:@selector(setSeparatorInset:)]) {        [_tableView setSeparatorInset:UIEdgeInsetsZero];            }    if ([_tableView respondsToSelector:@selector(setLayoutMargins:)])  {        [_tableView setLayoutMargins:UIEdgeInsetsZero];    }

 

2:设置cell,此处使用了xib自定义cell

- (void)awakeFromNib {    if ([self respondsToSelector:@selector(setLayoutMargins:)]) {        [self setLayoutMargins:UIEdgeInsetsZero];    }    if ([self respondsToSelector:@selector(setSeparatorInset:)]){        [self setSeparatorInset:UIEdgeInsetsZero];    }}

 

转载于:https://www.cnblogs.com/zanglitao/p/4202102.html

你可能感兴趣的文章
手机验证码执行流程
查看>>
python 基础 ----- 变量
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
为块级元素添加链接
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
:hover 鼠标同时触发两个元素变化
查看>>
go语言学习十三 - 相等性
查看>>
Idea 提交代码到码云(提交到github也大同小异)
查看>>
c#连接excel2007未安装ISAM解决
查看>>
Mono 异步加载数据更新主线程
查看>>
初识lua
查看>>
我是插件狂人,jDuang,jValidator,jModal,jGallery
查看>>
张季跃 201771010139《面向对象程序设计(java)》第四周学习总结
查看>>
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
字典【Tire 模板】
查看>>
LeetCode:Median of Two Sorted Arrays
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>
Perl IO:随机读写文件
查看>>