在UITableView中的Section Header中添加填充

时间:2016-04-03 20:18:46

标签: ios swift uitableview header

我创建了这个标题标题,但遗憾的是我不知道如何在右边添加一些填充。

screenshot

这是我的代码:

override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let title: UILabel = UILabel()
    title.text = "Days"
    title.backgroundColor = UIColor.lightGrayColor()
    title.textAlignment = NSTextAlignment.Right
    return title
}

2 个答案:

答案 0 :(得分:6)

您可以这样做:

override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let view = UIView(frame: CGRect(x: 0, y: 0, width: 20, height: 20))
    let label = UILabel(frame: CGRect(x: 15, y: 5, width: tableView.frame.width, height: 20))
    label.text = "Days"
    label.textAlignment = NSTextAlignment.Right
    view.addSubview(label)
    return view
}

答案 1 :(得分:2)

我发现在故事板中调整它可以解决问题。单击tableView并在左右边缘上设置分隔符插入。确保单击tableView而不是单元格。