美文网首页
iOS tableviewcell 底部线占满

iOS tableviewcell 底部线占满

作者: 松龄学编程 | 来源:发表于2020-07-28 09:01 被阅读0次
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
            [cell setSeparatorInset:UIEdgeInsetsZero];
        }
        
        if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
            [cell setLayoutMargins:UIEdgeInsetsZero];
        }
    

    相关文章

      网友评论

          本文标题:iOS tableviewcell 底部线占满

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