我正在以编程方式创建一个带有自定义单元格的表格 View 。我想在自定义单元格中使用带有排列 subview 的堆栈 View 。然而,我所有的努力都失败了。首先,是否有可能做到这一点?
其次,我将代码放在:
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: "cellId")
我正在使用此代码创建堆栈 View :
let thestack: UIStackView = {
let sv = UIStackView()
sv.distribution = .fillEqually
sv.axis = .vertical
sv.spacing = 8
return sv
}()
但是我无法将排列的 subview 添加到此之外,在我 addsubview(thestack) 并列出所有约束之后 - 我的任何数据都没有显示在自定义单元格中。任何帮助,将不胜感激。
最佳答案
是的,有可能。像下面这样:
class CustomTableViewCell: UITableViewCell {
let stackView: UIStackView = {
let stackView = UIStackView()
stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.spacing = 10
stackView.distribution = .fillEqually
return stackView
}()
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: .default, reuseIdentifier: reuseIdentifier)
addSubview(stackView)
stackView.leftAnchor.constraint(equalTo: leftAnchor, constant: 10).isActive = true
stackView.topAnchor.constraint(equalTo: topAnchor, constant: 10).isActive = true
stackView.rightAnchor.constraint(equalTo: rightAnchor, constant: -10).isActive = true
stackView.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -10).isActive = true
let redView = UIView()
redView.backgroundColor = .red
let yellowView = UIView()
yellowView.backgroundColor = .yellow
let blackView = UIView()
blackView.backgroundColor = .black
stackView.addArrangedSubview(redView)
stackView.addArrangedSubview(yellowView)
stackView.addArrangedSubview(blackView)
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
关于swift - 以编程方式自定义单元格和堆栈 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53766565/