How is it possible to add a arranged subview in a particular index in a UIStackView?
something like:
stackView.addArrangedSubview(nibView, atIndex: inde
You mean you want to insert, not add:
func insertArrangedSubview(_ view: UIView, atIndex stackIndex: Int)