前言
公元2017年9月20日,iOS11发布,该着手使用UIStackView
来升级项目中模块了。
简介
通过设置下列属性,就可以替代之前的复杂约束来完成相对复杂的布局。
NS_CLASS_AVAILABLE_IOS(9_0)
@property(nonatomic) UILayoutConstraintAxis axis;
@property(nonatomic) UIStackViewDistribution distribution;
@property(nonatomic) UIStackViewAlignment alignment;
@property(nonatomic) CGFloat spacing;
对应在xib中的选项
网友评论