Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can Xcode 7 Stack Views be backwards-compatible with iOS 8 and iOS 7?

I watched the WWDC video #407 - "Implementing UI Designs in Interface Builder" that present the cool feature - "Stack Views", and I was wonder that it would be wonderful (if it is possible) to build apps that will run on iOS 7, and 8 and take advantage of the new flexible UI layout abilities that Apple has added to Xcode 7.

like image 517
Shlomi Hasin Avatar asked Jul 14 '15 13:07

Shlomi Hasin


1 Answers

UIStackView is supported from iOS 9 onwards (iOS9 and later).

Its availability has not been mentioned for its previous version till now. And its clearly said that its new feature for iOS9.

Hence the answer for your question is - its in not a backward-compatibility.

There is similar thing available (OAStackView) to support prior version of iOS. https://github.com/oarrabi/OAStackView

like image 117
Mithun Ravindran Avatar answered Oct 13 '22 00:10

Mithun Ravindran