我拥有一个带有footerView的tableView。它应该显示一个简单的标签。
在我的 ViewController 中viewDidLoad
,我像这样分配 tableFooterView:
let footerView = MyFooterView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 0))
tableView.tableFooterView = footerView
MyFooterView
是一个带有单个标签的 UIView。标签设置如下所示:
label.font = someFont
label.adjustsFontForContentSizeCategory = true
label.textColor = .black
label.numberOfLines = 0
label.text = "my super looooooong label that should break some lines but it doesn't."
label.textAlignment = .center
label.translatesAutoresizingMaskIntoConstraints = false
addSubview(label)
NSLayoutConstraint.activate([
label.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 40),
label.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -40),
label.topAnchor.constraint(equalTo: self.topAnchor, constant: 20),
label.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: -20)
])
为了使用 AutoLayout MyFooterView
,我在 UIViewControllers 中调用了这个方法viewDidLayoutSubviews
:
func sizeFooterToFit() {
if let footerView = self.tableFooterView {
footerView.setNeedsLayout()
footerView.layoutIfNeeded()
let height = footerView.systemLayoutSizeFitting(UIView.layoutFittingCompressedSize).height
var frame = footerView.frame
frame.size.height = height
footerView.frame = frame
self.tableFooterView = footerView
}
}
问题:标签中的线条没有中断。我得到以下结果:
我该怎么做才能使标签有多行?由于该方法,AutoLayout 可以正常工作sizeFooterToFit
。唯一的问题是标签高度只有一行。