美文网首页
UITableViewCell设置左右两边间距

UITableViewCell设置左右两边间距

作者: 黎先生_ | 来源:发表于2021-03-19 10:59 被阅读0次

需求:UITableViewCell设置左右两边间距

在自定义的UITableViewCell里添加间距10:

//UITableViewCell设置左右两边间距
- (void)setFrame:(CGRect)frame {
    frame.origin.x += 10;
    frame.size.width -= 2 * 10;
    [super setFrame:frame];
}

相关文章

网友评论

      本文标题:UITableViewCell设置左右两边间距

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