Trying to achieve UIStackView with 2 labels for iPhone and 3 labels for iPad using size classes.
View hierarchy
Default size class
[UIStackView] [UILabel 1] [UILabel2] [UIStackView]
RxR size class
[UIStackView] [UILabel 1] [UILabel2] [UILabel3] [UIStackView]
It looks exactly as expected in Storyboard as you can see in the above screenshots but on simulator iPad view is messed up.
iPhone Output (okay)
iPad Portrait Output (messed up)
iPad Landscape Output (messed up)
What's happening in iPad?? Is it a bug or I'm missing something? Thanks.
I have created a sample project.