Masonry源碼淺析

OC 常用的約束框架是Masonry勾拉,而swift常用的是SnapKit衅澈,不過(guò)今天就只看看Masonry他巨。

先看個(gè)例子:

[view mas_makeConstraints:^(MASConstraintMaker *make) {
    make.left.offset(0);
    make.top.offset(0);
    make.right.offset(0);
    make.height.offset(300);
}];

[lable mas_updateConstraints:^(MASConstraintMaker *make) {
    make.top.offset(600);
    make.left.offset(100);
}];

[button mas_makeConstraints:^(MASConstraintMaker *make) {
    make.top.equalTo(view.mas_bottom).offset(10);
    make.left.equalTo(view);
    make.height.offset(50);
    make.width.offset(50);
}];
  • 源碼
  1. 首先來(lái)看mas_makeConstraints澡匪,內(nèi)部初始化MASConstraintMaker,然后用block送出去操作:
#define MAS_VIEW UIView
@implementation MAS_VIEW (MASAdditions)

- (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMaker *))block {
    self.translatesAutoresizingMaskIntoConstraints = NO;
    MASConstraintMaker *constraintMaker = [[MASConstraintMaker alloc] initWithView:self];
    block(constraintMaker);
    return [constraintMaker install];
}
  1. 然后先回到外面來(lái)拆融,看一下make.leftright,top,height等等都一樣)拆座,最終MASConstraintMaker的操作都會(huì)加到約束數(shù)組中:
@implementation MASConstraintMaker

- (MASConstraint *)left {
    return [self addConstraintWithLayoutAttribute:NSLayoutAttributeLeft];
}

- (MASConstraint *)addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute {
    return [self constraint:nil addConstraintWithLayoutAttribute:layoutAttribute];
}

- (MASConstraint *)constraint:(MASConstraint *)constraint addConstraintWithLayoutAttribute:(NSLayoutAttribute)layoutAttribute {
    ...
    if (!constraint) {
        newConstraint.delegate = self;
        [self.constraints addObject:newConstraint];//添加到數(shù)組
    }
    return newConstraint;
}
  1. 添加到約束數(shù)組之后返回了MASConstraint,接著來(lái)看看equalTo冠息,offset
- (MASConstraint * (^)(id))equalTo {
    return ^id(id attribute) {
        return self.equalToWithRelation(attribute, NSLayoutRelationEqual);
    };
}

- (MASConstraint * (^)(CGFloat))offset {
    return ^id(CGFloat offset){
        self.offset = offset;
        return self;
    };
}
  • equalTooffset其實(shí)都是block形式孕索,所以調(diào)用時(shí)可以用()而不用[]逛艰,而且都返回MASConstraint,所以可以連續(xù)調(diào)用搞旭,緊接著make.left使用鏈?zhǔn)秸Z(yǔ)法散怖。
  1. block(constraintMaker)執(zhí)行完后,就進(jìn)行[constraintMaker install]
@implementation MASConstraintMaker

- (NSArray *)install {
    if (self.removeExisting) {
        NSArray *installedConstraints = [MASViewConstraint installedConstraintsForView:self.view];
        for (MASConstraint *constraint in installedConstraints) {
            [constraint uninstall];//移除
        }
    }
    NSArray *constraints = self.constraints.copy;
    for (MASConstraint *constraint in constraints) {
        constraint.updateExisting = self.updateExisting;
        [constraint install];
    }
    [self.constraints removeAllObjects];
    return constraints;
}

會(huì)先判斷self.removeExisting移除舊約束肄渗,再遍歷約束數(shù)組進(jìn)行[constraint install]

- (void)install {
    ...
    //MASLayoutConstraint 繼承于 NSLayoutConstraint
    MASLayoutConstraint *layoutConstraint
        = [MASLayoutConstraint constraintWithItem:firstLayoutItem
                                        attribute:firstLayoutAttribute
                                        relatedBy:self.layoutRelation
                                           toItem:secondLayoutItem
                                        attribute:secondLayoutAttribute
                                       multiplier:self.layoutMultiplier
                                         constant:self.layoutConstant];
    
    layoutConstraint.priority = self.layoutPriority;
    layoutConstraint.mas_key = self.mas_key;
    //找出約束添加到哪個(gè)view上镇眷,并賦值給self.installedView
    //self.firstViewAttribute.view是要約束的view,self.secondViewAttribute.view是作為參考的view
    if (self.secondViewAttribute.view) {
        MAS_VIEW *closestCommonSuperview = [self.firstViewAttribute.view mas_closestCommonSuperview:self.secondViewAttribute.view];
        self.installedView = closestCommonSuperview;//第一個(gè)和第二個(gè)view共同最近的一個(gè)superView
    } else if (self.firstViewAttribute.isSizeAttribute) {
        self.installedView = self.firstViewAttribute.view;//如果約束寬高翎嫡,則自己添加約束
    } else {
        self.installedView = self.firstViewAttribute.view.superview;//默認(rèn)父控件
    }

    MASLayoutConstraint *existingConstraint = nil;
    if (self.updateExisting) {
        existingConstraint = [self layoutConstraintSimilarTo:layoutConstraint];
    }
    if (existingConstraint) {
        // just update the constant
        existingConstraint.constant = layoutConstraint.constant;//更新
        self.layoutConstraint = existingConstraint;
    } else {
        [self.installedView addConstraint:layoutConstraint];//添加約束
        self.layoutConstraint = layoutConstraint;
        [firstLayoutItem.mas_installedConstraints addObject:self];
    }
}

添加約束的控件默認(rèn)是父控件欠动,如果固定寬高則為自身,如果有self.secondViewAttribute.view則找出共同父控件,最終判斷self.updateExisting給控件添加約束或者更新約束具伍。

  1. 另外翅雏,上面出現(xiàn)的self.updateExisting會(huì)在mas_updateConstraints里設(shè)置雕欺,self.removeExisting會(huì)在mas_remakeConstraints里設(shè)置:
- (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *))block {
    self.translatesAutoresizingMaskIntoConstraints = NO;
    MASConstraintMaker *constraintMaker = [[MASConstraintMaker alloc] initWithView:self];
    constraintMaker.updateExisting = YES;
    block(constraintMaker);
    return [constraintMaker install];
}

- (NSArray *)mas_remakeConstraints:(void(^)(MASConstraintMaker *make))block {
    self.translatesAutoresizingMaskIntoConstraints = NO;
    MASConstraintMaker *constraintMaker = [[MASConstraintMaker alloc] initWithView:self];
    constraintMaker.removeExisting = YES;
    block(constraintMaker);
    return [constraintMaker install];
}
  • 總結(jié)

mas_makeConstraints會(huì)返回該View的約束數(shù)組恋沃,通過(guò)block傳送MASConstraintMaker(負(fù)責(zé)管理約束)添加約束,block完畢后掰茶,
MASConstraintMaker調(diào)用install萤厅,然后會(huì)遍歷約束數(shù)組橄抹,每一個(gè)MASViewConstraint都調(diào)用install,最終會(huì)調(diào)用原生的方法添加約束惕味。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末楼誓,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子赦拘,更是在濱河造成了極大的恐慌慌随,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件躺同,死亡現(xiàn)場(chǎng)離奇詭異阁猜,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)蹋艺,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)剃袍,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人捎谨,你說(shuō)我怎么就攤上這事民效。” “怎么了涛救?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵畏邢,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我检吆,道長(zhǎng)舒萎,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任蹭沛,我火速辦了婚禮臂寝,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘摊灭。我一直安慰自己咆贬,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布帚呼。 她就那樣靜靜地躺著掏缎,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上御毅,一...
    開(kāi)封第一講書(shū)人閱讀 49,007評(píng)論 1 284
  • 那天根欧,我揣著相機(jī)與錄音,去河邊找鬼端蛆。 笑死凤粗,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的今豆。 我是一名探鬼主播嫌拣,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼呆躲!你這毒婦竟也來(lái)了异逐?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤插掂,失蹤者是張志新(化名)和其女友劉穎灰瞻,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體辅甥,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡酝润,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了璃弄。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片要销。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖夏块,靈堂內(nèi)的尸體忽然破棺而出疏咐,到底是詐尸還是另有隱情,我是刑警寧澤脐供,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布浑塞,位于F島的核電站,受9級(jí)特大地震影響政己,放射性物質(zhì)發(fā)生泄漏酌壕。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一匹颤、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧托猩,春花似錦印蓖、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至,卻和暖如春他宛,著一層夾襖步出監(jiān)牢的瞬間船侧,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工厅各, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留镜撩,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓队塘,卻偏偏與公主長(zhǎng)得像袁梗,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子憔古,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容