iOS tableviewcell 分割线 偏移和颜色

时间:2023-03-09 03:29:43
iOS tableviewcell 分割线 偏移和颜色

改变颜色

[_hotProductsTableView setSeparatorColor : kSeparatorColor];

-(void)viewDidLayoutSubviews

{

[super viewDidLayoutSubviews];

if ([_hotProductsTableView respondsToSelector:@selector(setSeparatorInset:)]) {

[_hotProductsTableView setSeparatorInset:UIEdgeInsetsMake(0,-5,0,10)];

}

if ([_hotProductsTableView respondsToSelector:@selector(setLayoutMargins:)]) {

[_hotProductsTableView setLayoutMargins:UIEdgeInsetsMake(0,-5,0,10)];

}

}