UITableView方法

作者: 清都 | 来源:发表于2018-01-31 18:10 被阅读3次

cell设置

为cell设置间隔


//重写cell的frame方法 实现自定义带有间隙的cell
- (void)setFrame:(CGRect)frame
{
    frame.origin.x = 0;//这里间距为10,可以根据自己的情况调整
    frame.size.width -= 22 * frame.origin.x;
    frame.size.height -= 22 * frame.origin.x+10;
    [super setFrame:frame];
}  

来源:关于如何设置UITableView的Cell有间隔

相关文章

网友评论

    本文标题:UITableView方法

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