I have the following storyboard scene which is not yet using Auto Layout.
If you don't see the image above (images don't seem to work), then it's basically:
Button, (Label, Slider, TextField), (Label, Slider, TextField), PopupMenu, (Label, PopupMenu)
I'd like to use autolayout and NSStackView for the sake of localization, since the length of the labels can change drastically in different languages.
Specifically, I'd like the controls to be laid out left-to-right, with some fixed spaces between groups (like between Invert and Radius).
I added the views to a stack using the Embed In Stack command.
I'm presented then with various constraint errors. I try to constrain the width/height of the sliders, and then more constraint errors. Going into lots of detail might take a while here, but I can't figure out the right set of constraints to do the relatively simple layout.
What's the general approach to this? What sort of constraints should I add to accomplish the desired layout?
(Note: before you suggest I read the docs, I've read the docs, and so has the other person working on this. We've watched the videos. We're still confused)