wtlucky's RMBP
![](https://secure.gravatar.com/avatar/a219219e22cb1b760ebd57f6d62d0141.png?d=retro&r=PG&s=240)
1pod
UIStackView is a very handy tool to build flow layout, but it's available only when iOS9+, we've found some great compatible replacements like OAStackView, but we want more:
Import nothing, learn nothing, it just works.
objc
// Works in iOS6+, use it directly.
UIStackView *stackView = [[UIStackView alloc] init];
stackView.axis = UILayoutConstraintAxisHorizontal;
stackView.distribution = UIStackViewDistributionFill;
stackView.alignment = UIStackViewAlignmentTop;
[stackView addArrangedSubview:[[UILabel alloc] init]];
[self.view addSubview:stackView];
Set Builds for
option to iOS 9.0 and later
to eliminate the version error in Xcode:
Now, use UIStackView as you like and its reactive options and live preview:
License: MIT