美文网首页
cell分割线不顶格

cell分割线不顶格

作者: 盈盈一水不得语 | 来源:发表于2017-04-12 09:12 被阅读0次

在- (void)viewDidLoad {}里面添加如下代码

if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {

[self.tableView setSeparatorInset:UIEdgeInsetsZero];

}

if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {

[self.tableView setLayoutMargins:UIEdgeInsetsZero];

}

随后添加tableview的代理方法

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

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

[cell setSeparatorInset:UIEdgeInsetsZero];

 }

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

[cell setLayoutMargins:UIEdgeInsetsZero];

}

相关文章

网友评论

      本文标题:cell分割线不顶格

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