美文网首页
【iOS】UITableViewCell分割线左对齐

【iOS】UITableViewCell分割线左对齐

作者: 794f64d7a292 | 来源:发表于2017-04-01 09:49 被阅读7503次

我们在写tableView的时候经常会遇到分割线问题,系统默认分割线总是左偏离15个像素。但是在实际项目中我们可能会让分割线消失,或者居中,或者左偏100等等很多情况。那么在不自定义分割线的情况下怎么让分割线达到自己的预期目的呢?其实很简单……

- (void)viewDidLayoutSubviews {  
    if ([my_tableView respondsToSelector:@selector(setSeparatorInset:)]) {  
        my_tableView.separatorInset = cell_inset;  
    }  
      
    if ([my_tableView respondsToSelector:@selector(setLayoutMargins:)]) {  
        [my_tableView setLayoutMargins: cell_inset];  
    }  
}  
  
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {  
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {  
        [cell setLayoutMargins:cell_inset];  
    }  
      
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {  
        [cell setSeparatorInset:cell_inset];  
    }  
      
    if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]) {  
        [cell setPreservesSuperviewLayoutMargins:NO];  
    }  
}  

my_tableView是UITableView对象
为了方便,我们可以把UIEdgeInsets宏定义,或者定义一个静态变量
#define kCELL_INSETS UIEdgeInsetsMake(0, 0, 0, 0)

static UIEdgeInsets cell_inset = {0,0,0,0};

这样我们就可以很方便的修改偏移量了,结束!

相关文章

网友评论

      本文标题:【iOS】UITableViewCell分割线左对齐

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