我创建了这个标题标题,不幸的是我不知道如何在右侧添加一些填充.

这是我的代码:
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
}
Run Code Online (Sandbox Code Playgroud)