`

UITableView separator inset设置为0 不起作用

 
阅读更多

方案一,添加UITableView的delegate:

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Remove seperator inset
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }
    
    // Prevent the cell from inheriting the Table View's margin settings
    if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]) {
        [cell setPreservesSuperviewLayoutMargins:NO];
    }
    
    // Explictly set your cell's layout margins
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }
}

 方案二,对于自定义的Cell,添加以下代码:

- (UIEdgeInsets)layoutMargins
{
    return UIEdgeInsetsZero;
}

 

参考链接:http://stackoverflow.com/questions/25770119/ios-8-uitableview-separator-inset-0-not-working

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics