如何在UIStackView的特定索引中添加排列的子视图?
类似于:
stackView.addArrangedSubview(nibView, atIndex: index)
您的意思是要插入,而不是添加:
func insertArrangedSubview(_ view: UIView, atIndex stackIndex: Int)
如果你不想与索引斗争,你可以使用这个扩展
extension UIStackView {
func insertArrangedSubview(_ view: UIView, belowArrangedSubview subview: UIView) {
arrangedSubviews.enumerated().forEach {
if $0.1 == subview {
insertArrangedSubview(view, at: $0.0 + 1)
}
}
}
func insertArrangedSubview(_ view: UIView, aboveArrangedSubview subview: UIView) {
arrangedSubviews.enumerated().forEach {
if $0.1 == subview {
insertArrangedSubview(view, at: $0.0)
}
}
}
}