Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can UIStackView support iOS 8 or 7?

I know that UIStackview is a new feature in iOS 9. If I want my app to support iOS 8 or iOS 7, does that mean I shouldn't use stack views?

like image 287
Ted Avatar asked Jun 23 '15 18:06

Ted


People also ask

What's a UIStackView did you use it?

You use a UIStackView to group UI elements together to simplify setting constraints. In other words once you've added objects to the stack view, you constrain the stackview and set attributes on it rather than on each individual element.

What is UIStackView in Swift?

Overview. Stack views let you leverage the power of Auto Layout, creating user interfaces that can dynamically adapt to the device's orientation, screen size, and any changes in the available space. The stack view manages the layout of all the views in its arrangedSubviews property.

What are stacks in Xcode?

Stack views are a powerful tool for quickly and easily designing your user interfaces. Their attributes allow a high degree of control over how they lay out their arranged views. You can augment these settings with additional, custom constraints; however, this increases the layout's complexity.


1 Answers

It looks like it's for iOS 9+.

UIStackView

Availability

Available in iOS 9.0 and later

like image 144
Jeffery Thomas Avatar answered Oct 05 '22 23:10

Jeffery Thomas