在 UITableView 中为 Section Header 添加填充
Posted
技术标签:
【中文标题】在 UITableView 中为 Section Header 添加填充【英文标题】:Add padding to Section Header in UITableView 【发布时间】:2016-04-03 20:18:46 【问题描述】:我创建了这个部分的标题,不幸的是我不知道如何在右侧添加一些填充。
这是我的代码:
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
【问题讨论】:
***.com/questions/21017019/….. 这似乎在回答您的问题。另外在文本末尾添加2个空格怎么样? title.text = "天" 为什么不尝试创建一个UIView
并将您的UILabel
添加为该视图的子视图,并在标签上使用自动布局约束在标签的一侧添加一些空间?
***.com/questions/9502235/… 可以帮忙
【参考方案1】:
你可以这样做:
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 = .right
view.addSubview(label)
return view
【讨论】:
如何控制多线兄弟?【参考方案2】:我发现在情节提要中调整它可以解决问题。单击 tableView 并在左右边缘设置 Separator Inset。确保单击 tableView 而不是单元格。
【讨论】:
以上是关于在 UITableView 中为 Section Header 添加填充的主要内容,如果未能解决你的问题,请参考以下文章
UITableView section header 不固定
带有 Section、IndexList 和 Search 的 UITableView