IOS 7 Auto Layout vs. iOS 8 Adaptive Layout, is there a difference?

Is there any difference between the automatic layout of iOS 7 and the adaptive layout of iOS 8? Or is it just - adaptive layout - a more advanced version with more features to help create more flexible layouts that suit different screen sizes?

I really can not understand the real difference between the two terms, or am I missing something?

+6
source share
2 answers

Working with autostart in iOS 7 and iOS 8 is the same. Adaptive layout is actually just an umbrella term for all the new layout tools in Xcode 6 and iOS 8, one of which is Autolayout. Although autorun is not new, it is still part of the responsive layout set, and it has improved significantly in iOS 8. Other adaptive layout tools include Size Sections and Responsive Fonts . I recommend reading an article by Ray Wenderley, in which there are several examples of new tools: http://www.raywenderlich.com/83276/beginning-adaptive-layout-tutorial

+16
source

Auto-layout: With auto-layout, you can define constraints to control how your user interface adapts immediately to resizing.

Responsive layout: create once in a common storyboard and use for iPad and iPhone.

+2
source

Source: https://habr.com/ru/post/978590/


All Articles