美文网首页
iOS 解决cell分割线左边短20px的问题

iOS 解决cell分割线左边短20px的问题

作者: chayc | 来源:发表于2016-09-13 14:15 被阅读0次
/**
 *  解决cell分割线左边短20px的问题
 */
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.section == 0) {
        
        if ([cell respondsToSelector:@selector(setLayoutMargins:)])
        {
            [cell setLayoutMargins:UIEdgeInsetsZero];
        }
        
        if ([cell respondsToSelector:@selector(setSeparatorInset:)])
        {
            [cell setSeparatorInset:UIEdgeInsetsZero];
        }
    }
}

相关文章

网友评论

      本文标题:iOS 解决cell分割线左边短20px的问题

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