Auto Layout in iOS
Using Auto Layout feature developers can align UI controls for different devices, screen sizes and orientation. This reduces the code to be maintained and makes life easy for the developers. Auto...
View ArticleAdaptive Layout in iOS
Adaptive Layout was introduced in iOS 8 to address the problem of designing user interface for different devices and screen sizes. In the earlier version of iOS, we had to maintain different...
View ArticleHow to programmatically add AutoLayout constraints?
AutoLayout solves the mystery when designing app for more than one screen size and for both Portrait and Landscape orientation. This is done by adding constraints to the views using various Auto Layout...
View ArticleContent Priority in Auto Layout
Auto Layout brings in lots of good features to ease the life of an iOS developer when designing User Interfaces. In this example, we will see how to use Content Priorities such as Content Hugging and...
View ArticleUnable to simultaneously satisfy constraints.
A common error that we would see when using Auto Layout is Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don’t want. Debugging...
View Article