IOS7&IOS8下cell下划线两端补齐

来源:互联网 发布:linux用dd制作启动盘 编辑:程序博客网 时间:2024/05/21 00:49

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

    

   if ([tableView respondsToSelector:@selector(setSeparatorInset:)])

    {

        [tableViewsetSeparatorInset:UIEdgeInsetsZero];

    }

   if ([tableView respondsToSelector:@selector(setLayoutMargins:)])

    {

        [tableViewsetLayoutMargins:UIEdgeInsetsZero];

    }

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

    {

        [cellsetLayoutMargins:UIEdgeInsetsZero];

    }

}


0 0
原创粉丝点击