I add views to a TZStackView (which should be basically the same as a UIStackView, but with a fallback for older versions) like this:
stackView.addArrangedSubview(subview)
the stackView and the subview are of dynamic size (auto-layout) and resize themselves. However, this happens with an animation (I think due to addArrangedSubview, it does not happen if I add it as subview and set constraints). Is there a way to deactivate the animations?