【Auto Layout】
Audo Layout System only supported above iOS6.0。Coders that need to support system which below iOS6.0,do not consider using AudoLayout System。
1、Constraint
2、UIView.layoutSubviews,iOS5.1之前本方法啥都不做,之后的版本默认会使用constraint来排版。开发者可以在此方法中自定义排版。
3、UIView.setNeedsLayout,此方法让UIView在下一帧重新排版。
4、UIView.layoutIfNeeded,在本帧中立即重绘。
5、建立属性的方法