4

是否可以在 UITableView 单元格之间应用边距?

简介要求表格单元格如下所示 -

在此处输入图像描述

我有一个自定义单元格类来设置背景/字体/单独标签的样式 - 但无法弄清楚如何应用任何类型的间距!

4

3 回答 3

9

我会这样做:首先,确保backgroundyourUITableViewCell和 its contentViewis的颜色[UIColor clearColor],然后添加一个比你的单元格略小的子视图contentView(这样height = CGRectGetHeight(contentView) - margin)并用你需要的颜色填充它。然后backgroundView为您设置UITableView,这应该可以解决问题。

于 2013-10-28T17:29:36.187 回答
2

用 Swift 语言在 TableView 中的两个单元格之间获取空间的最佳方法。

func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {

    cell.contentView.backgroundColor=UIColor.clearColor()

    var whiteRoundedCornerView:UIView!
    whiteRoundedCornerView=UIView(frame: CGRectMake(5,10,self.view.bounds.width-10,120))
    whiteRoundedCornerView.backgroundColor=UIColor(red: 174/255.0, green: 174/255.0, blue: 174/255.0, alpha: 1.0)
    whiteRoundedCornerView.layer.masksToBounds=false
    whiteRoundedCornerView.layer.shadowOpacity = 1.55
    whiteRoundedCornerView.layer.shadowOffset = CGSizeMake(1, 0);
    whiteRoundedCornerView.layer.shadowColor=UIColor(red: 53/255.0, green: 143/255.0, blue: 185/255.0, alpha: 1.0).CGColor
    whiteRoundedCornerView.layer.cornerRadius=3.0
    whiteRoundedCornerView.layer.shadowOffset=CGSizeMake(-1, -1)
    whiteRoundedCornerView.layer.shadowOpacity=0.5
    cell.contentView.addSubview(whiteRoundedCornerView)
    cell.contentView.sendSubviewToBack(whiteRoundedCornerView)
}
于 2015-04-03T09:51:32.217 回答
-4

对于单元格类的 layoutSubviews() funs 中单元格的边距,请添加此代码行。

contentView.frame = contentView.frame.inset(by: UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10))
于 2015-09-11T12:50:39.550 回答