我正在为UITableView苦苦挣扎。如您在表格视图第三部分的this video中所见,第三个单元格未正确显示。当我像这样将我的单元出队时,就会发生这种情况:
let cell = tableView.dequeueReusableCell(withIdentifier: MultipleSelectAnswerSurveyTableViewCellIdentifier, for: indexPath) as! MultipleSelectAnswerSurveyTableViewCell
cell.setup(answer: question.answers?[indexPath.row].value ?? "", isSelected: false, style: style, isLastInSection: indexPath.row == (question.answers?.count ?? 1) - 1)
return cell
单元格的setup()
方法:
func setup(answer: String, isSelected: Bool, style: Style, isLastInSection: Bool) {
self.isLastInSection = isLastInSection
selectionStyle = .none
backgroundColor = style.survey.singleSelectAnswerTableViewCell.backgroundColor
answerLabel.textColor = style.survey.singleSelectAnswerTableViewCell.answerLabelColor
answerLabel.font = style.survey.singleSelectAnswerTableViewCell.answerLabelFont
answerLabel.text = answer
addSubview(answerLabel)
addSubview(selectionIndicator)
answerLabel.snp.makeConstraints { make in
make.left.equalTo(8)
make.centerY.equalTo(selectionIndicator.snp.centerY)
make.top.equalTo(8)
make.bottom.equalTo(-8)
make.right.equalTo(selectionIndicator.snp.left).offset(-8)
}
selectionIndicator.snp.makeConstraints { make in
make.right.equalTo(-8)
make.top.greaterThanOrEqualTo(8)
make.bottom.lessThanOrEqualTo(-8)
make.width.height.equalTo(26)
}
}
self.isLastInSection
变量在layoutSubviews()
内部使用:
override func layoutSubviews() {
super.layoutSubviews()
if isLastInSection {
roundCorners(corners: [.bottomLeft, .bottomRight], radius: 16.0)
}
contentView.layoutIfNeeded()
}
最后是roundCorners()
:
extension UIView {
func roundCorners(corners: UIRectCorner, radius: CGFloat) {
let path = UIBezierPath(roundedRect: bounds, byRoundingCorners: corners, cornerRadii: CGSize(width: radius, height: radius))
let mask = CAShapeLayer()
mask.path = path.cgPath
layer.mask = mask
}
}
当我将isLastInSection
设置为假的单元格出队时,将按预期显示(related video)。因此,我认为问题出在单元的生命周期以及何时调用layoutSubview()
时。我尝试了许多解决方案来解决在不同线程中发现的类似问题,但没有一个对我有帮助。 tableView(_:heightForRowAt:)
导致第三个单元格正确显示,但是第一个单元格具有圆底角。同样,它们都固定在高度上,这是不可能发生的。
但是真正奇怪的是:当我在出队的单元格中打印isLastInSection
时,如果调试器出乎意料地四舍五入,则会返回false:
(lldb) po indexPath.row == (question.answers?.count ?? 1) - 1
false
正如您在“调试视图层次结构”中所看到的那样,存在视图文本,因此这就是我将问题定义为隐藏部分内容的原因。
答案 0 :(得分:1)
您使单元出队,并且每次添加子视图时,都不会检查它们是否已经存在,这在回收单元的情况下会发生。这可能会打破约束并导致大小不正确。
与舍入相同的问题-您设置了圆角,但是当不应重用重复使用的单元格时,您永远不会恢复此行为。
解决此问题的最佳方法是添加其他检查并仅创建一次子视图:
func setup(answer: String, isSelected: Bool, style: Style, isLastInSection: Bool) {
if self.subviews.count == 0 {
// adding subviews etc.
// code that needs to be performed only once for whole cell's life
}
self.isLastInSection = isLastInSection
// set up content that changes for each cell (like text)
// for example a code depending on parameters of this method
}
或者,您可以保留一些属性,例如isInitialized
并在开始时进行检查。
此外,您的方法layoutSubviews
必须支持两种情况:
override func layoutSubviews() {
super.layoutSubviews()
if isLastInSection {
roundCorners(corners: [.bottomLeft, .bottomRight], radius: 16.0)
} else {
layer.mask = nil
}
contentView.layoutIfNeeded()
}