I'm starting a new project that supports iOS9 upwards and after looking at Apple's constraint guidelines they appear to suggest using StackViews whenever possible. After reading a few articles and the apple documentation I've a basic understanding of how to create them and their benefits but I'm still not sure when not to use them and how to arrange them.
For example in the below view should I use:
- One big StackView on a vertical axis that covers the entire super view.
- Three StackViews with regular constraints pinning them to each other and the super view.
- One big StackView that covers the entire super view with three stack views within that view
- No StackViews, this view isn't suitable
In general how do I decide how I layout my stackviews and whether to use them?