第三方庫(kù)地址:https://github.com/SnapKit/Masonry
pod 'Masonry'
(UIKit - 中有系統(tǒng)的自動(dòng)布局)
一般的布局
self.letfView = [UIView new];
self.letfView.backgroundColor = [UIColor redColor];
self.rightView = [UIView new];
self.rightView.backgroundColor = [UIColor greenColor];
[self.view addSubview:self.letfView];
[self.view addSubview:self.rightView];
[self.letfView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.mas_equalTo(self.view).mas_offset(10);// leftView 左邊 = self.view 左邊 +10
make.top.mas_equalTo(self.view).mas_offset(20);// leftView 上邊 = self.view 上邊 +20
make.height.mas_equalTo(100);// leftView 高 = 100
}];
[self.rightView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(self.letfView);// rightView 上邊 = leftView 上邊(即上邊對(duì)齊)
make.right.mas_equalTo(self.view).mas_offset(-10);// rightView 右邊 = self.view 右邊 - 10
make.left.mas_equalTo(self.letfView.mas_right).mas_offset(20);// rightView 左邊 = leftView 右邊 + 20
make.width.mas_equalTo(self.letfView);// rightView 寬 = leftView 寬
make.height.mas_equalTo(self.letfView);// rightView 高 = leftView 高
}];
// 實(shí)現(xiàn)了最基礎(chǔ)的 左右2個(gè)View 等高等寬等簡(jiǎn)單約束朽寞,在橫豎屏切換通用识窿。
到這里,基本上已經(jīng)可以開(kāi)始玩masonry了愁憔,看完更多屬性腕扶,基本小學(xué)畢業(yè)了。
更多 make.XXX ,先手比較屬性吨掌。
left; 左
top; 上
right; 右
bottom; 下
leading; 左
trailing; 右
width; 寬
height; 高
centerX; x軸中心
centerY; y軸中心
baseline; 基線半抱,沒(méi)怎么用過(guò)
leftMargin; 左邊默認(rèn)邊距好像是20,下面的類似
rightMargin;
topMargin;
bottomMargin;
leadingMargin;
trailingMargin;
centerXWithinMargins;
centerYWithinMargins;
----------- 分割線 ----------
edges;4周
size;大小
center;中心
對(duì)應(yīng)語(yǔ)法略有不同膜宋,偏移方法也相對(duì)復(fù)雜一些窿侈。不偏移的話使用可以與上面一致。
更多mas_equalTo(XXX) ,后手比較屬性
上半部分 基本雷同秋茫,如果不添加史简,就是默認(rèn)與前面make.XXX 對(duì)應(yīng)的mas_
mas_left;
mas_top;
mas_right;
mas_bottom;
mas_leading;
mas_trailing;
mas_width;
mas_height;
mas_centerX;
mas_centerY;
mas_baseline;
mas_leftMargin;
mas_rightMargin;
mas_topMargin;
mas_bottomMargin;
mas_leadingMargin;
mas_trailingMargin;
mas_centerXWithinMargins;
mas_centerYWithinMargins;
----------- 分割線 ----------
自動(dòng)根據(jù)bar 高度設(shè)置的引導(dǎo)屬性值,舉個(gè)例子:
存在navigationBar 時(shí)肛著,mas_topLayoutGuideBottom 相當(dāng)于 增加了44圆兵。
不存在navigationBar 時(shí),mas_topLayoutGuideBottom 相對(duì)于 0 枢贿。
mas_topLayoutGuide;// navgationBar 相關(guān)殉农,
mas_topLayoutGuideTop;
mas_topLayoutGuideBottom;
mas_bottomLayoutGuide;// tabbar toolbar 相關(guān)
mas_bottomLayoutGuideTop;
mas_bottomLayoutGuideBottom;
多條件布局
- 大于、小于局荚、等于
mas_equalTo; =
mas_greaterThanOrEqualTo; >=
mas_lessThanOrEqualTo; <=
// 大小于超凳,使用場(chǎng)景感覺(jué)比較少。
- 約束優(yōu)先級(jí)
簡(jiǎn)單舉例:原本2個(gè)View是上下排布耀态,當(dāng)topView 移除時(shí)轮傍,bottomView,就使用次級(jí)約束而上移首装。
[self.topView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.and.right.and.left.mas_equalTo(self.view);
make.height.mas_equalTo(100);
}];
[self.bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(self.topView.mas_bottom).priority(999);// 可以自己寫(xiě)優(yōu)先值创夜,越大越優(yōu)先(1000 是xib 默認(rèn)值,也是系統(tǒng)默認(rèn)最大值)
make.top.mas_equalTo(self.view).priorityLow();// 也可以用系統(tǒng)默認(rèn)的優(yōu)先值仙逻,low 代表250
make.left.and.right.mas_equalTo(self.view);
make.height.mas_equalTo(100);
}];
- 同時(shí)多個(gè)屬性一致簡(jiǎn)寫(xiě)
// 使用 and 鏈接屬性
make.left.and.top.and.width.and.height.mas_equalTo(self.letfView);
- 同時(shí)與多個(gè)View存在關(guān)系挥下,混合寫(xiě)
// 數(shù)組形式 make.top.mas_equalTo(@[self.letfView.mas_top,self.rightView.mas_top]);
- mas_equalTo(XXX) 的 mas_width 與 width 比較
// mas_ 前綴的 是宏定義揍魂,封裝好了直接可以使用 NSInteger,
// 而沒(méi)有前綴的 需要使用 NSNumber
make.width.mas_equalTo(100);
make.width.equalTo(@100);
- mas_offset 與 with.offset 相比較
UIEdgeInsets edg = UIEdgeInsetsMake(10, 20, 30, 40);
[self.letfView mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.mas_equalTo(self.view).mas_offset(edg);
make.edges.mas_equalTo(self.view).with.insets(edg);
}];
// 使用 with. 需要區(qū)分 offset棚瘟、insets、sizeOffset喜最、centerOffset偎蘸,分別使用偏移。
// 使用mas_offset 自動(dòng)區(qū)分了上面的幾種情況瞬内,自動(dòng)匹配了
關(guān)于 偏移 可以繼續(xù)研究CoreGraphice 框架中的 CGGeometry,下次在寫(xiě)迷雪。
更新 重置約束 - 可以實(shí)現(xiàn)動(dòng)畫(huà)效果
設(shè)置約束三大方法
mas_makeConstraints 添加某個(gè)
mas_updateConstraints 更新某個(gè)
mas_remakeConstraints 重置全部
- 簡(jiǎn)單更新約束
// 原本 約束
[self.letfView mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.and.right.and.left.mas_equalTo(self.view);
make.height.mas_equalTo(100);
}];
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {
// 更新約束
[self.letfView mas_updateConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(self.view).mas_offset(300);
}];
- 結(jié)合平移動(dòng)畫(huà)
// 修改 上面的 更新約束的方法,
[self.letfView mas_updateConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(self.view).mas_offset(300);
}];
[self.letfView setNeedsLayout]; // 標(biāo)記需要更新約束
[UIView animateWithDuration:1. animations:^{
[self.letfView layoutIfNeeded]; // 動(dòng)畫(huà)過(guò)程中更新約束虫蝶,達(dá)到偏移效果
}];
布局涉及的其他屬性 - 內(nèi)容抗壓縮章咧,內(nèi)容緊湊
(我的理解,叫法可能不一樣)
舉個(gè)例子:同水平方向有2 個(gè) Label能真,內(nèi)容都不確定有多少赁严,即寬度不定。
- 對(duì)2個(gè)Label 進(jìn)行不定寬的布局粉铐,如果僅僅這樣布局疼约,對(duì)內(nèi)容的控制,可能不是我們想要的驹吮。但是好像沒(méi)有報(bào)錯(cuò)甸私≈狨猓可能默認(rèn)處理了。(我這里嘗試與第一個(gè)label 抗壓縮织鲸,第二個(gè)label 內(nèi)容優(yōu)先緊湊,效果一致溪胶。)
[self.leftLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.and.left.mas_equalTo(self.view);
}];
[self.rightLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerY.and.right.mas_equalTo(self.view);
make.left.mas_equalTo(self.leftLabel.mas_right);
}];
- 對(duì)Label 添加屬性
(個(gè)人覺(jué)得第一步是這個(gè):先顯示內(nèi)容)
// 內(nèi)容緊湊 - 優(yōu)先完全顯示內(nèi)容搂擦,且不多占像素。
[self.leftLabel setContentHuggingPriority:UILayoutPriorityDefaultHigh forAxis:UILayoutConstraintAxisHorizontal];
[self.rightLabel setContentHuggingPriority:UILayoutPriorityDefaultLow forAxis:UILayoutConstraintAxisHorizontal];
// (個(gè)人覺(jué)得第二步是這個(gè):調(diào)整內(nèi)容是否壓縮)
// 抵抗 壓縮载荔,抗壓縮低的盾饮,在上一步的基礎(chǔ)上,進(jìn)行壓縮調(diào)整懒熙。
[self.leftLabel setContentCompressionResistancePriority:UILayoutPriorityDefaultHigh forAxis:UILayoutConstraintAxisHorizontal];
[self.rightLabel setContentCompressionResistancePriority:UILayoutPriorityDefaultLow forAxis:UILayoutConstraintAxisHorizontal];
1