默认Cell之间是没有间距的,但是因为实际需要我们要让Cell之间有一定的间距,这里有三种方式能实现这种效果:
(1)如果是UITableViewStylePlain,你可以将UITableViewCell的separator设置为UITableViewCellSeparatorStyleNone。将tableViewCell的背景色,contentView的背景色设置为透明,在contentView中添加一个UIImageView做为背景,使UIImageView的高度小于cell的高度,这样创建出的tableView就可以使每个cell之间看起来有一定间隔。这个间隔就是imageView的高度与cell的高度之间的差值。
(2)如果你的tableView样式是UITableViewStyleGrouped,那就更好办了,因为group的tableView每个section都是隔开的,你只需要给每个section添加一行cell就行了。如果需要调整section之间的距离,你可以用UITableView的属性sectionHeaderHeight或sectionFooterHeight来设置。也可以用delegate方法来设置高度,heightForHeaderInSection或heightForFooterInSection
(3)重写cell的setFrame方法
-(void)setFrame:(CGRect)frame {
frame.size.height -= 10; //10为需要设置的间距
[super setFrame:frame];
}
网友评论