TableViewCell的分割线显示不全解决方法

- (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];

    }

}

 

 

-(void)viewDidLayoutSubviews {

    

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

        [self.tableViewsetSeparatorInset:UIEdgeInsetsZero];

        

    }

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

        [self.tableViewsetLayoutMargins:UIEdgeInsetsZero];

    }

    

 

}

posted on 2015-04-23 14:06  助金  阅读(302)  评论(0编辑  收藏  举报