一般的布局
self.letfView = [UIViewnew];self.letfView.backgroundColor = [UIColorredColor];self.rightView = [UIViewnew];self.rightView.backgroundColor = [UIColorgreenColor];? ? [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 左邊 +10make.top.mas_equalTo(self.view).mas_offset(20);// leftView 上邊 = self.view 上邊 +20make.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 右邊 - 10make.left.mas_equalTo(self.letfView.mas_right).mas_offset(20);// rightView 左邊 = leftView 右邊 + 20make.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)可以開始玩masonry了讯蒲,看完更多屬性,基本小學(xué)畢業(yè)了氓侧。
更多 make.XXX ,先手比較屬性瓢喉。
left; 左top; 上right; 右bottom; 下leading; 左trailing; 右width; 寬height; 高centerX; x軸中心centerY; y軸中心baseline; 基線摹蘑,沒怎么用過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)景感覺比較少募逞。
約束優(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);// 可以自己寫優(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 代表250make.left.and.right.mas_equalTo(self.view);? ? ? ? make.height.mas_equalTo(100);? ? }];
同時(shí)多個(gè)屬性一致簡(jiǎn)寫
// 使用 and 鏈接屬性make.left.and.top.and.width.and.height.mas_equalTo(self.letfView);
同時(shí)與多個(gè)View存在關(guān)系,混合寫
// 數(shù)組形式? ? make.top.mas_equalTo(@[self.letfView.mas_top,self.rightView.mas_top]);
mas_equalTo(XXX) 的 mas_width 與 width 比較
/ mas_ 前綴的 是宏定義苟蹈,封裝好了直接可以使用 NSInteger糊渊,// 而沒有前綴的 需要使用 NSNumbermake.width.mas_equalTo(100);? ? ? ? make.width.equalTo(@100);
mas_offset 與 with.offset 相比較
UIEdgeInsetsedg =UIEdgeInsetsMake(10,20,30,40);? ? [self.letfViewmas_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,下次在寫。