UITableViewCell 分割线

前言

一直有个误解,认为设置UITableViewCell的分割线距离cell左边的间距比较麻烦,总是隐藏自带的分割线,添加一个1像素的View。不过在只需适配iOS8以后,发现并不是很复杂。就写个测试的Demo,看看在不同版本系统的效果。

主要的测试代码

TestTableViewController.m

@implementation TestTableViewController
- (void)viewDidLoad {
    [super viewDidLoad];
    
    NSLog(@"systemVersion = %@",[UIDevice currentDevice].systemVersion);
    
    self.tableView.separatorInset = UIEdgeInsetsZero;
}
@end

ATableViewCell.m

@implementation ATableViewCell
- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
    
    self.separatorInset = UIEdgeInsetsMake(0, 20, 0, 0);
}
- (void)layoutSubviews{

    [super layoutSubviews];
    NSLog(@"ATableViewCell separatorInset = %@",NSStringFromUIEdgeInsets(self.separatorInset));
}
@end

BTableViewCell.m

@implementation BTableViewCell

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
    
}

- (void)layoutSubviews{
    
    [super layoutSubviews];
    NSLog(@"BTableViewCell separatorInset = %@",NSStringFromUIEdgeInsets(self.separatorInset));
}
@end    

不同版本下的效果

iOS 10

运行后的Log及效果

systemVersion = 10.3.1
ATableViewCell separatorInset = {0, 20, 0, 0}
BTableViewCell separatorInset = {0, 0, 0, 0}
iOS 10

很显然,是预期的效果。

iOS 9

运行后的Log及效果

systemVersion = 9.0
ATableViewCell separatorInset = {0, 20, 0, 0}
BTableViewCell separatorInset = {0, 8, 0, 0}
iOS 9

从Log 和运行的效果图都可以看出,ATableViewCell的分割左边有8个像素的间距,并没有达到我们想设置为0的效果。

iOS 8

systemVersion = 8.1
ATableViewCell separatorInset = {0, 20, 0, 0}
BTableViewCell separatorInset = {0, 8, 0, 0}
iOS 8

和iOS9一样,ATableViewCell的分割左边有8个像素的间距,并没有达到我们想设置为0的效果。

问题所在

layoutMargins

在iOS8 UIView增加了layoutMargins属性

@property (nonatomic) UIEdgeInsets layoutMargins NS_AVAILABLE_IOS(8_0);

官方文档解释为

Use this property to specify the desired amount of space (measured in points) between the edge of the view and any subviews. Auto layout uses your margins as a cue for placing content. For example, if you specify a set of horizontal constraints using the format string “|-[subview]-|”, the left and right edges of the subview are inset from the edge of the superview by the corresponding layout margins. When the edge of your view is close to the edge of the superview and the preservesSuperviewLayoutMargins property is YES, the actual layout margins may be increased to prevent content from overlapping the superview’s margins.

The default margins are eight points on each side.

If the view is a view controller’s root view, the system sets and manages the margins. The top and bottom margins are set to zero points. The side margins vary depending on the current size class, but can be either 16 or 20 points. You cannot change these margins.

附上谷歌翻译

使用此属性指定视图边缘和任何子视图之间所需的空间量(以点为单位)。 自动布局使用您的边距作为放置内容的提示。 例如,如果使用格式字符串“| - [subview] - |”指定一组水平约束,则子视图的左边缘和右边缘将从超级视图的边缘插入相应的布局边距。 当您的视图的边缘靠近超级视图的边缘并且preservesuperviewLayoutMargins属性为YES时,可能会增加实际的布局边距,以防止内容与超级视图的边距重叠。

默认边距是每边八点。

如果视图是视图控制器的根视图,系统将设置和管理边距。 顶部和底部边距设置为零点。 侧边距根据当前大小类别而变化,但可以是16或20点。 您不能更改这些边距。

大致的意思就是在布局子控件时,子控件的frame会依据此属性增加相应的间距。在Storyboardxib中,对应的就是在添加约束时,一般都会取消勾选的属性

storyborad.png

所以,在BTableViewCell中添加如下代码就可以实现在iOS 8和iOS 9分割线左边的间距为0

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
    self.layoutMargins = UIEdgeInsetsZero;
}

添加后的Log及效果

systemVersion = 9.0
ATableViewCell separatorInset = {0, 20, 0, 0}
BTableViewCell separatorInset = {0, 0, 0, 0}
9.0_after.png

preservesSuperviewLayoutMargins

同样是iOS 8增加的属性

// default is NO - set to enable pass-through or cascading behavior of margins from this view’s parent to its children
@property (nonatomic) BOOL preservesSuperviewLayoutMargins NS_AVAILABLE_IOS(8_0); 

官方文档的解释为

When the value of this property is YES, the superview’s margins are also considered when laying out content. This margin affects layouts where the distance between the edge of a view and its superview is smaller than the corresponding margin. For example, you might have a content view whose frame precisely matches the bounds of its superview. When any of the superview’s margins is inside the area represented by the content view and its own margins, UIKit adjusts the content view’s layout to respect the superview’s margins. The amount of the adjustment is the smallest amount needed to ensure that content is also inside the superview’s margins.

The default value of this property is NO.

大致理解为,若设置该属性为YES,相当与写了这句代码self.layoutMargins = super.layoutMargins

所以在修改BTableViewCell的代码为如下后

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
    self.preservesSuperviewLayoutMargins = YES;
    self.layoutMargins = UIEdgeInsetsZero;
}
- (void)layoutSubviews{
    [super layoutSubviews];
    NSLog(@"BTableViewCell layoutMargins = %@",NSStringFromUIEdgeInsets(self.layoutMargins));
    NSLog(@"BTableViewCell separatorInset = %@",NSStringFromUIEdgeInsets(self.separatorInset));
}

得到的Log和效果

systemVersion = 8.1
ATableViewCell separatorInset = {0, 20, 0, 0}
BTableViewCell layoutMargins = {0, 16, 0, 16}
BTableViewCell separatorInset = {0, 16, 0, 0}
preservesSuperViewLayoutMargins.png

和预期的一样,BTableViewCelllayoutMargins并不为0,而是父视图的{0, 16, 0, 16}

layoutMargins的文档中也提到

If the view is a view controller’s root view, the system sets and manages the margins. The top and bottom margins are set to zero points. The side margins vary depending on the current size class, but can be either 16 or 20 points. You cannot change these margins.

BTalbeViewCell的父控件时tableViewtableViewTestTableViewControllerroot view,所以tableView的左右layoutMargin都为16

总结

  • 设置self.tableView.separatorInset = UIEdgeInsetsZero;可调整tableView中所有的cellseparatorInset
  • cell设置了separatorInset则会依据cellseparatorInset来调整
  • 在iOS 9 和iOS 8 中需要设置self.layoutMargins = UIEdgeInsetsZero,才能达到边距为0的效果

以上是本人测试后所得出的结论,并且是第一次写博客,不对之处还请多多包涵、指正。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 194,319评论 5 459
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 81,801评论 2 371
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 141,567评论 0 319
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,156评论 1 263
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,019评论 4 355
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,090评论 1 272
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,500评论 3 381
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,192评论 0 253
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,474评论 1 290
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,566评论 2 309
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,338评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,212评论 3 312
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,572评论 3 298
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 28,890评论 0 17
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,169评论 1 250
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,478评论 2 341
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,661评论 2 335

推荐阅读更多精彩内容