美文网首页
uitableview 系统自带的分割线 顶格 不显示

uitableview 系统自带的分割线 顶格 不显示

作者: 大心脏 | 来源:发表于2018-02-26 10:40 被阅读17次

iOS7后separatorInset  增加了一个 layoutMargins 接口,

顶格:

cell.separatorInset = UIEdgeInsetsZero;

cell.layoutMargins = UIEdgeInsetsZero;

cell.preservesSuperviewLayoutMargins = NO;

隐藏:

cell.separatorInset =UIEdgeInsetsMake(0, 0, 0, 横屏宽度);

cell.layoutMargins =UIEdgeInsetsMake(0, 0, 0, 横屏宽度);

cell.preservesSuperviewLayoutMargins = NO;

相关文章

网友评论

      本文标题:uitableview 系统自带的分割线 顶格 不显示

      本文链接:https://www.haomeiwen.com/subject/yxeexftx.html