在Swift中添加tableviewcell之间的空间

时间:2016-01-19 14:20:25

标签: ios swift uitableview

我正在尝试在动态单元格之间添加空格。

这是我的代码。我不明白为什么它不起作用。

 func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        return 50
    }
 func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
        let footer = UIView()
        footer.backgroundColor = UIColor.clearColor()
        return footer
    }

1 个答案:

答案 0 :(得分:1)

您可以通过将numberOfRows in section设置为1并将numberofSections设置为填充单元格的动态项数组来实现此目的。然后,您可以将页脚视图高度设置为您的空间。

func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    return YOUR_DESIRED_SPACE_BETWEEN_CELLS
}