Swift iOS Development: AutoLayout (1080p)



Swift iOS Development: AutoLayout (1080p)

Swift iOS Development: AutoLayout (1080p)

Check all tips and tricks:
http://bit.ly/SwiftTipsYouTube16

==============================================

iOS Development Tips and Tricks: AutoLayout
=====================================

In this lecture we are going to cover auto layout starting from basic implementation and gradually building a more complex layout.

Auto Layout dynamically calculates the size and position of all the views in your view hierarchy, based on constraints placed on those views. For example, you can constrain a button so that it is horizontally centered with an Image view and so that the button’s top edge always remains 8 points below the image’s bottom. If the image view’s size or position changes, the button’s position automatically adjusts to match.

This constraint-based approach to design allows you to build user interfaces that dynamically respond to both internal and external changes.

Auto Layout defines your user interface using a series of constraints. Constraints typically represent a relationship between two views. Auto Layout then calculates the size and location of each view based on these constraints. This produces layouts that dynamically respond to both internal and external changes.

Comments are closed.