如何优雅的实现有间距的UITableViewCell

      其实优雅的也是最简单的方法是直接让UITableView中的cell收缩一点,这样UITableView的底色就是分割线的颜色了。这种方式只需要重写cell的setFrame方法即可


-(void)setFrame:(CGRect)frame

{

frame.origin.x = 10;//这里间距为10,可以根据自己的情况调整

frame.size.width -= 2 * frame.origin.x;

frame.size.height -= 2 * frame.origin.x;

[super setFrame:frame];

}

你可能感兴趣的:(如何优雅的实现有间距的UITableViewCell)