iOS学习之AutoLayout、AutoresizingMask

AutoresizingMask

http://www.cocoachina.com/ios/20141216/10652.html

设置的View,是相对于父容器,固定左边距,固定右边距等。

AutoLayout

学习地址:
http://www.it165.net/pro/html/201501/31217.html

官方解释:

AutoLayout是一种基于约束的,描述性的布局系统。
Auto Layout Is a Constraint-Based, Descriptive Layout System.

其实就是跟Android的相对布局(RelativeLayout)很像;
storyboard上开启AutoLayout

iOS学习之AutoLayout、AutoresizingMask_第1张图片
开启AutoLayout

代码里面需要关闭AutoresizingMask

[self.decLabel setTranslatesAutoresizingMaskIntoConstraints:NO];

你可能感兴趣的:(iOS学习之AutoLayout、AutoresizingMask)