美文网首页
tableview的组头不设置,直接可以有间距的方法

tableview的组头不设置,直接可以有间距的方法

作者: 小码农杰哥 | 来源:发表于2017-10-24 16:45 被阅读0次

    在cell里设置:

    - (void)setFrame:(CGRect)frame{

    frame.origin.x += 0;

    frame.origin.y += 10;

    frame.size.height -= 10;

    frame.size.width -= 0;

    [super setFrame:frame];

    }

    相关文章

      网友评论

          本文标题:tableview的组头不设置,直接可以有间距的方法

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