Earlier quoted context omitted.
> AutoLayout is verbose and complex, even with helper libraries. I don't think they can get much shorter than this: private func addConstraints() { introduction.attach(sides: [.top, .leading, .trailing], 8.layoutGuideRespecting) contact .attach(sides: [.leading, .trailing], 8) .space(8, .below, introduction) spinner.center() error .attach(sides: [.leading, .trailing], 8) .space(8, .below, contact) create.attach(sides…
I think UIStackView would be much simpler solution for this ;)
I rarely use them unless I have a "just fill this space between eachother" problem.