美文网首页
Cell不用再自定义分割线,用系统方法解决自定义分割线

Cell不用再自定义分割线,用系统方法解决自定义分割线

作者: ___1o_8o | 来源:发表于2016-07-18 10:16 被阅读171次

在控制器中

切记:不要设置下面语句

    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
//分割线inset
@property (nonatomic, assign) UIEdgeInsets insets;

//设置左右可以达到分割线不水平顶置
self.insets = UIEdgeInsetsMake(0, 0, 0, 0);


-(void)viewDidLayoutSubviews {
    if ([_tableView respondsToSelector:@selector(setSeparatorInset:)]) {
        [_tableView setSeparatorInset:self.insets];
    }
    if ([_tableView respondsToSelector:@selector(setLayoutMargins:)])  {
        [_tableView setLayoutMargins:self.insets];
    }
}

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath*)indexPath{
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:self.insets];
    }
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]){
        [cell setSeparatorInset:self.insets];
    }
}

相关文章

网友评论

      本文标题:Cell不用再自定义分割线,用系统方法解决自定义分割线

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