一、Masonry介紹
之前我們在屏幕適配的章節(jié)中學(xué)習(xí)過AutoLayout
的使用剑按,但那都是在可視化界面上進(jìn)行添加約束完成的,我們很多時候都需要在代碼中使用AutoLayout
約束澜术,蘋果也為我們提供了實(shí)現(xiàn)艺蝴,使用NSLayoutConstraint
類表示約束,但使用起來比較復(fù)雜鸟废,代碼量比較大猜敢,例如創(chuàng)建一個約束的方法:
+ (id)constraintWithItem:(id)view1 /* 一個UIView */
attribute:(NSLayoutAttribute)attribute1 /* 屬性 */
relatedBy:(NSLayoutRelation)relation /* 關(guān)系 */
toItem:(id)view2 /* 另一個UIView */
attribute:(NSLayoutAttribute)attribute2 /* 屬性 */
multiplier:(CGFloat)multiplier /* 倍數(shù) */
constant:(CGFloat)constant; /* 偏移 */
如果約束一多,這個方法調(diào)用次數(shù)就會越多盒延,代碼就會變得很長缩擂。
實(shí)際上我們可以使用第三方框架Masonry
,該框架是一個輕量級的布局框架添寺,封裝了AutoLayout
胯盯,擁有自己的描述語法,采用更優(yōu)雅的鏈?zhǔn)秸Z法计露,簡潔明了博脑,并具有高可讀性憎乙。
Masonry
基本支持AutoLayout
的所有屬性:
@property (nonatomic, strong, readonly) MASConstraint *left;
@property (nonatomic, strong, readonly) MASConstraint *top;
@property (nonatomic, strong, readonly) MASConstraint *right;
@property (nonatomic, strong, readonly) MASConstraint *bottom;
@property (nonatomic, strong, readonly) MASConstraint *leading;
@property (nonatomic, strong, readonly) MASConstraint *trailing;
@property (nonatomic, strong, readonly) MASConstraint *width;
@property (nonatomic, strong, readonly) MASConstraint *height;
@property (nonatomic, strong, readonly) MASConstraint *centerX;
@property (nonatomic, strong, readonly) MASConstraint *centerY;
@property (nonatomic, strong, readonly) MASConstraint *baseline;
這些屬性與NSLayoutAttrubute
的對照表如下:
二、Masonry使用
Masonry
的大部分方法都為UIView
實(shí)現(xiàn)了分類叉趣,使我們可以十分簡單的使用
下面是Masonry添加約束的方法:
/* 添加新約束泞边,只負(fù)責(zé)新增約束,不能同時存在兩條針對于同一對象的約束君账,否則會報錯 */
- (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMaker *make))block;
/* 更新原有的約束繁堡,針對上面的情況沈善,會更新在block中出現(xiàn)的約束乡数,不會導(dǎo)致出現(xiàn)兩個相同約束的情況 */
- (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *make))block;
/* 刪除之前約束,重新添加約束闻牡,會清除之前的所有約束净赴,僅保留最新的約束 */
- (NSArray *)mas_remakeConstraints:(void(^)(MASConstraintMaker *make))block;
- 上面三個方法不僅只有
UIView
可以調(diào)用,存有UIView
的NSArray
數(shù)組也可以調(diào)用罩润,表示遍歷數(shù)組中所有UIView
進(jìn)行調(diào)用
下面是Block中使用的常見約束語法玖翅,[attribute]表示屬性,[value]表示值:
/*
屬性attribute可以連用割以,比如top.right.bottom.left
加mas_前綴和沒有mas_前綴效果差不多金度,只是加mas_前綴會對參數(shù)裝箱,
參數(shù)有結(jié)構(gòu)體的時候严沥,需要使用mas_前綴猜极,沒有mas_前綴的參數(shù)必須為對象
*/
/*
數(shù)值約束,top對應(yīng)NSInteger消玄,center對應(yīng)NSPoint跟伏,size對應(yīng)NSSize
[multi]表示倍數(shù),使用multipliedBy必須是對同一個控件本身翩瓜,例如我們希望width/height比為1/3.0
*/
make.[attribute].mas_equalTo([value]).multipliedBy([multi]);
/* 等于約束受扳,兩個view之間比較,注意:沒有other.edges的屬性兔跌,edges對應(yīng)otherView */
make.[attribute].equalTo(otherView.[attribute]);
/* 大于等于約束勘高,兩個view之間比較 */
make.[attribute].greaterThanOrEqualTo(otherView.[attribute]);
/* 小于等于約束,兩個view之間比較 */
make.[attribute].lessThanOrEqualTo(otherView.[attribute]);
/* 偏移約束 */
make.[attribute].equalTo(otherView.[attribute]).offset([value]);
/* 邊界約束坟桅,有上华望、下、左桦卒、右邊界 */
make.edges.equalTo(otherView).insets(UIEdgeInsetsMake([topValue],[leftValue],[bottomValue],[rightValue]));
/* Margin約束 */
make.[attribute].equalTo(otherView.[attribute]Margin);
注意:
添加約束前立美,必須先把
UIView
添加到父視圖中,否則會閃退
下面我們通過幾個實(shí)例來理解:
1. 實(shí)例一[基礎(chǔ)]:居中顯示一個view
- (void)viewDidLoad {
[super viewDidLoad];
UIView *sv = [[UIView alloc] init];
sv.backgroundColor = [UIColor blackColor];
//一定要先將view添加到superView上方灾,否則會出錯
[self.view addSubview:sv];
//Masonry的autolayout添加約束
__weak ViewController *weakSelf = self;
[sv mas_makeConstraints:^(MASConstraintMaker *make) {
make.center.equalTo(weakSelf.view);//將sv居中
make.size.mas_equalTo(CGSizeMake(300, 300));//將sv的尺寸設(shè)置為(300,300)
}];
}
2. 實(shí)例二[初級]:讓一個view略小于其superView(邊距為10)
UIView *sv = [[UIView alloc] init];
sv.backgroundColor = [UIColor blackColor];
//一定要先將view添加到superView上建蹄,否則會出錯
[self.view addSubview:sv];
//Masonry的autolayout添加約束
__weak ViewController *weakSelf = self;
[sv mas_makeConstraints:^(MASConstraintMaker *make) {
make.center.equalTo(weakSelf.view);//將sv居中
make.size.mas_equalTo(CGSizeMake(300, 300));//將sv的尺寸設(shè)置為(300,300)
}];
UIView *sv1 = [[UIView alloc] init];
sv1.backgroundColor = [UIColor redColor];
//一定要先將view添加到superView上碌更,否則會出錯
[sv addSubview:sv1];
//Masonry的autolayout添加約束
[sv1 mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(sv).with.insets(UIEdgeInsetsMake(10, 10, 10, 10));
/* 等價于
make.top.equalTo(sv).with.offset(10);
make.left.equalTo(sv).with.offset(10);
make.bottom.equalTo(sv).with.offset(-10);
make.right.equalTo(sv).with.offset(-10);
*/
/* 也等價于
make.top.left.bottom.and.right.equalTo(sv).with.insets(UIEdgeInsetsMake(10, 10, 10, 10));
*/
}];
實(shí)際上and和with這兩個方法什么事情都沒做:
- (MASConstraint *)with {
return self;
}
- (MASConstraint *)and {
return self;
}
3. 實(shí)例三[初級]:讓兩個高度為150的view垂直居中且等寬且等間隔排列,間隔為10(自動計算其寬度)
UIView *sv = [[UIView alloc] init];
sv.backgroundColor = [UIColor blackColor];
//一定要先將view添加到superView上洞慎,否則會出錯
[self.view addSubview:sv];
//Masonry的autolayout添加約束
__weak ViewController *weakSelf = self;
[sv mas_makeConstraints:^(MASConstraintMaker *make) {
make.center.equalTo(weakSelf.view);//將sv居中
make.size.mas_equalTo(CGSizeMake(300, 300));//將sv的尺寸設(shè)置為(300,300)
}];
int padding1 = 10;
UIView *leftView = [[UIView alloc] init];
leftView.backgroundColor = [UIColor orangeColor];
[sv addSubview:leftView];
UIView *rightView = [[UIView alloc] init];
rightView.backgroundColor = [UIColor orangeColor];
[sv addSubview:rightView];
//Masonry的autolayout添加約束
[leftView mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.mas_equalTo(sv.mas_centerY);//中心Y軸和sv中心Y軸相等
make.left.equalTo(sv.mas_left).with.offset(padding1);//左邊距離sv的左邊界10
make.right.equalTo(rightView.mas_left).with.offset(-padding1);//右邊距離rightView的左邊界-10
make.height.mas_equalTo(@150);//高度150
make.width.equalTo(rightView);//寬度等于rightView
}];
[rightView mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.mas_equalTo(sv.mas_centerY);//中心Y軸和sv中心Y軸相等
make.left.equalTo(leftView.mas_right).with.offset(padding1);//左邊距離leftView的右邊界10
make.right.equalTo(sv.mas_right).with.offset(-padding1);//右邊距離sv的右邊界-10
make.height.mas_equalTo(@150);//高度150
make.width.equalTo(leftView);//寬度等于leftView
}];
4. 實(shí)例四[中級]:在UIScrollView順序排列一些view并自動計算contentSize
UIView *sv = [[UIView alloc] init];
sv.backgroundColor = [UIColor blackColor];
//一定要先將view添加到superView上痛单,否則會出錯
[self.view addSubview:sv];
//Masonry的autolayout添加約束
__weak ViewController *weakSelf = self;
[sv mas_makeConstraints:^(MASConstraintMaker *make) {
make.center.equalTo(weakSelf.view);//將sv居中
make.size.mas_equalTo(CGSizeMake(300, 300));//將sv的尺寸設(shè)置為(300,300)
}];
/* 創(chuàng)建ScrollView */
UIScrollView *scrollView = [[UIScrollView alloc] init];
scrollView.backgroundColor = [UIColor whiteColor];
[sv addSubView:scrollView];
[scrollView mas_makeConstraints:^(MASConstraintMaker *make) {
//設(shè)置邊界約束
make.edges.equalTo(sv).with.insets(UIEdgeInsetsMake(5,5,5,5));
}];
//創(chuàng)建ScrollView子視圖容器視圖
UIView *container = [[UIView alloc] init];
[scrollView addSubView:container];
//添加container約束
[container mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(scrollView);//邊界緊貼ScrollView邊界
make.width.equalTo(scrollView);//寬度和ScrollView相等
}];
//向container添加多個View
int count = 10;
UIView *lastView = nil;
for(int i = 1;i <= count;++i ){
//創(chuàng)建一個View
UIView *subView = [[UIView alloc] init];
[container addSubView:subView];
//顏色隨機(jī)
subView.backgroundColor = [UIColor colorWithRed:( arc4random() % 256 / 256.0 )
green:( arc4random() % 256 / 256.0 )
blue:( arc4random() % 256 / 256.0 )
alpha:1];
//向subView添加約束
[subView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.and.right.equalTo(container);//左右邊界和container緊貼
make.height.mas_equalTo(@(20*i));//高度隨i遞增
//判斷是否有前一個子View
if ( lastView ) {
//如果有前一個View,上邊界和前一個View的下邊界緊貼
make.top.mas_equalTo(lastView.mas_bottom);
} else {
//如果沒有前一個View劲腿,上邊界和container的上邊界緊貼
make.top.mas_equalTo(container.mas_top);
}
}];
//保存前一個View
lastView = subView;
}
//添加container的最后一個約束
[container mas_makeConstraints:^(MASConstraintMaker *make) {
//container的下邊界和最后一個View的下邊界緊貼
make.bottom.equalTo(lastView.mas_bottom);
}];
三旭绒、Masonry進(jìn)階
Masonry為NSArray實(shí)現(xiàn)了2個特殊的分類方法:
/*
該方法只有存有UIView的NSArray數(shù)組可以調(diào)用,NSArray里面的UIView必須有共同的spuerView
該方法作用是UIView之間的水平等寬定距約束焦人,或者垂直等高定距約束挥吵。
先確定間距,寬度或高度不確定花椭,但相等
axisType只有MASAxisTypeHorizontal(水平間距類型)和MASAxisTypeVertical(垂直間距類型)
fixedSpacing是UIView兩兩之間的間距大小
leadSpacing是第一個UIView距離superView左(或上)邊界的間距大小
tailSpacing是最后一個UIView距離superView右(或下)邊界的間距大小
數(shù)組里的所有UIView水平寬度相等忽匈,或者垂直高度相等
*/
- (void)mas_distributeViewsAlongAxis:(MASAxisType)axisType
withFixedSpacing:(CGFloat)fixedSpacing
leadSpacing:(CGFloat)leadSpacing
tailSpacing:(CGFloat)tailSpacing;
/*
該方法只有存有UIView的NSArray數(shù)組可以調(diào)用,NSArray里面的UIView必須有共同的spuerView
該方法作用是UIView之間的水平定寬等距約束矿辽,或者垂直定高等距約束丹允。
先確定寬度或高度,間距不確定袋倔,但相等
axisType只有MASAxisTypeHorizontal(水平間距類型)和MASAxisTypeVertical(垂直間距類型)
fixedSpacing是UIView兩兩之間的間距大小
leadSpacing是第一個UIView距離superView左(或上)邊界的間距大小
tailSpacing是最后一個UIView距離superView右(或下)邊界的間距大小
數(shù)組里的所有UIView間距相等
*/
- (void)mas_distributeViewsAlongAxis:(MASAxisType)axisType
withFixedItemLength:(CGFloat)fixedItemLength
leadSpacing:(CGFloat)leadSpacing
tailSpacing:(CGFloat)tailSpacing;
下面是等間距方法的使用實(shí)例:
/*
設(shè)置水平等寬定距
UIView之間水平間距為20雕蔽,第一個UIView距離superView左邊6,
最后一個UIView距離superView右邊7宾娜,UIView高度為60批狐,距離頂部40
*/
[array mas_distributeViewsAlongAxis:MASAxisTypeHorizontal
withFixedSpacing:20
leadSpacing:6
tailSpacing:7];
[array mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(@40);
make.height.equalTo(@60);
}];
/*
設(shè)置水平定寬等距
所有UIView的寬度為20,第一個UIView距離superView左邊6碳默,
最后一個UIView距離superView右邊7贾陷,UIView高度為60,距離頂部40
*/
[array mas_distributeViewsAlongAxis:MASAxisTypeHorizontal
withFixedItemLength:20
leadSpacing:6
tailSpacing:7];
[array mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(@40);
make.height.equalTo(@60);
}];