Masonry和PureLayout使用比較

首先看下Masonry和PureLayout的區(qū)別:

Masonry PureLayout
重量級(jí),需學(xué)習(xí)成本 輕量級(jí)畴博,語法更偏向Objective-C
添加約束 mas_makeConstraints 使用了 block 模塊 沒有 block
更新約束 mas_updateConstraints 保證不會(huì)導(dǎo)致出現(xiàn)兩個(gè)相同約束的情況 開發(fā)者控制
刪除約束 mas_remakeConstraints ,沒有針對 IOS 8 使用 Active 屬性 針對 IOS 8 使用 Active 屬性

Massonry的用法:

    lable = [UILabel new];
    [self.view addSubview:lable];
    #prama mark  左右邊距20  距離頂部20 高度40的Label
    [lable mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.equalTo(@20);
        make.right.equalTo(@(-20));
        make.top.equalTo(@20);
        make.height.equalTo(@40);
    }];
    lable.backgroundColor = [UIColor redColor];
    lable.textAlignment = NSTextAlignmentCenter;
    lable.text = @"masonry測試Label";
    #prama mark 頂部距離label底部20 左右邊距20  高度40的TextField
    UITextField* textField = [UITextField new];
    [self.view addSubview:textField];
    [textField mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(lable.mas_bottom).with.offset(20);
        make.left.equalTo(@20);
        make.right.equalTo(@(-20));
        make.height.equalTo(@40);
    }];
    textField.backgroundColor = [UIColor redColor];
    textField.placeholder = @"masonry測試textField";
    textField.textAlignment = NSTextAlignmentCenter;
    #prama mark 頂部距離textfield底部20  左右邊距20   等寬、等高(40) 間距20的2個(gè)button
     button1 =[UIButton buttonWithType:UIButtonTypeCustom];
    [self.view addSubview:button1];
    button2 =[UIButton buttonWithType:UIButtonTypeCustom];
    [self.view addSubview:button2];
    [button1 mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(textField.mas_bottom).with.offset(20);
        make.left.equalTo(@20);
        make.height.equalTo(@40);
        make.width.equalTo(button2.mas_width);
        make.right.equalTo(button2.mas_left).with.offset(-20);
    }];
    [button2 mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(button1.mas_top);
        make.right.equalTo(@(-20));
        make.height.equalTo(button1.mas_height);
    }];
    [button1 setTitle:@"button1" forState:UIControlStateNormal];
    [button1 setBackgroundColor:[UIColor redColor]];
    [button1 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
    button1.selected = NO;
    [button1 addTarget:self action:@selector(changeSmall:) forControlEvents:UIControlEventTouchUpInside];
    
    [button2 setTitle:@"button2" forState:UIControlStateNormal];
    [button2 setBackgroundColor:[UIColor redColor]];
    [button2 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
    #prama mark  頂部距離button底部20  相對于self.view X方向居中 寬300 高100的imageView
    imageView =[UIImageView new];
    imageView.backgroundColor = [UIColor redColor];
    [self.view addSubview:imageView];
    [imageView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(button1.mas_bottom).with.offset(20);
        make.centerX.equalTo(self.view);
        make.height.equalTo(@100);
        make.width.equalTo(@300);
    }];

再來看看PureLayout的用法

    self.label = [[UILabel alloc] init];
    self.label.backgroundColor = [UIColor redColor];
    self.textField = [[UITextField alloc] init];
    self.textField.backgroundColor = [UIColor redColor];
    self.button1 = [UIButton buttonWithType:UIButtonTypeCustom];
    self.button1.backgroundColor = [UIColor redColor];
    self.button2 = [UIButton buttonWithType:UIButtonTypeCustom];
    self.button2.backgroundColor = [UIColor redColor];
    self.imageView = [[UIImageView alloc] init];
    self.imageView.backgroundColor = [UIColor redColor];
    [self.view addSubview:self.label];
    [self.view addSubview:self.textField];
    [self.view addSubview:self.button1];
    [self.view addSubview:self.button2];
    [self.view addSubview:self.imageView];

    [self.label autoPinEdge:ALEdgeLeft toEdge:ALEdgeLeft ofView:self.view withOffset:20.0f];
    [self.label autoPinEdge:ALEdgeRight toEdge:ALEdgeRight ofView:self.view withOffset:-20.0f];
    [self.label autoPinEdge:ALEdgeTop toEdge:ALEdgeTop ofView:self.view withOffset:20.0f];
    [self.label autoSetDimension:ALDimensionHeight toSize:40.0f];
    
    
    [self.textField autoPinEdge:ALEdgeTop toEdge:ALEdgeBottom ofView:self.label withOffset:20.0f];
    [self.textField autoPinEdge:ALEdgeLeft toEdge:ALEdgeLeft ofView:self.view withOffset:20.0f];
    [self.textField autoPinEdge:ALEdgeRight toEdge:ALEdgeRight ofView:self.view withOffset:-20.0f];
    [self.textField autoSetDimension:ALDimensionHeight toSize:40.0f];
    
    [self.button1 autoPinEdge:ALEdgeTop toEdge:ALEdgeBottom ofView:self.textField withOffset:20.0f];
    [self.button1 autoPinEdge:ALEdgeLeft toEdge:ALEdgeLeft ofView:self.view withOffset:20.0f];
    [self.button1 autoSetDimension:ALDimensionHeight toSize:40.0f];
    [self.button1 autoMatchDimension:ALDimensionWidth toDimension:ALDimensionWidth ofView:self.button2];
    
    [self.button2 autoPinEdge:ALEdgeTop toEdge:ALEdgeBottom ofView:self.textField withOffset:20.0f];
    [self.button2 autoPinEdge:ALEdgeRight toEdge:ALEdgeRight ofView:self.view withOffset:-20.0f];
    [self.button2 autoPinEdge:ALEdgeLeft toEdge:ALEdgeRight ofView:self.button1 withOffset:20.0f];
    [self.button2 autoMatchDimension:ALDimensionHeight toDimension:ALDimensionHeight ofView:self.button1];
    
    [self.imageView autoPinEdge:ALEdgeTop toEdge:ALEdgeBottom ofView:self.button1 withOffset:20.0f];
    [self.imageView autoSetDimension:ALDimensionWidth toSize:300.0f];
    [self.imageView autoSetDimension:ALDimensionHeight toSize:100.0f];
    [self.imageView autoAlignAxisToSuperviewAxis:ALAxisVertical];

效果圖如下:

Paste_Image.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末整葡,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌营勤,老刑警劉巖富弦,帶你破解...
    沈念sama閱讀 211,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件沟娱,死亡現(xiàn)場離奇詭異,居然都是意外死亡腕柜,警方通過查閱死者的電腦和手機(jī)济似,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來媳握,“玉大人碱屁,你說我怎么就攤上這事《暾遥” “怎么了娩脾?”我有些...
    開封第一講書人閱讀 157,435評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長打毛。 經(jīng)常有香客問我柿赊,道長,這世上最難降的妖魔是什么幻枉? 我笑而不...
    開封第一講書人閱讀 56,509評論 1 284
  • 正文 為了忘掉前任碰声,我火速辦了婚禮,結(jié)果婚禮上熬甫,老公的妹妹穿的比我還像新娘胰挑。我一直安慰自己,他們只是感情好椿肩,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,611評論 6 386
  • 文/花漫 我一把揭開白布瞻颂。 她就那樣靜靜地躺著,像睡著了一般郑象。 火紅的嫁衣襯著肌膚如雪贡这。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,837評論 1 290
  • 那天厂榛,我揣著相機(jī)與錄音盖矫,去河邊找鬼。 笑死击奶,一個(gè)胖子當(dāng)著我的面吹牛辈双,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播柜砾,決...
    沈念sama閱讀 38,987評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼辐马,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起喜爷,我...
    開封第一講書人閱讀 37,730評論 0 267
  • 序言:老撾萬榮一對情侶失蹤冗疮,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后檩帐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體术幔,經(jīng)...
    沈念sama閱讀 44,194評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,525評論 2 327
  • 正文 我和宋清朗相戀三年湃密,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了诅挑。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,664評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡泛源,死狀恐怖拔妥,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情达箍,我是刑警寧澤没龙,帶...
    沈念sama閱讀 34,334評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站缎玫,受9級(jí)特大地震影響硬纤,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜赃磨,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,944評論 3 313
  • 文/蒙蒙 一筝家、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧邻辉,春花似錦溪王、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至雷客,卻和暖如春芒珠,著一層夾襖步出監(jiān)牢的瞬間桥狡,已是汗流浹背搅裙。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留裹芝,地道東北人部逮。 一個(gè)月前我還...
    沈念sama閱讀 46,389評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像嫂易,于是被迫代替她去往敵國和親兄朋。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,554評論 2 349

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

  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫怜械、插件颅和、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,066評論 4 62
  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,791評論 25 707
  • 你說“女孩子峡扩,要獨(dú)立蹭越。媽媽不能一直幫你做一些事情〗探欤” 他說“沒關(guān)系响鹃,你在我眼里永遠(yuǎn)都是小女生,有什么事情找爸爸...
    鄧枝枝閱讀 87評論 0 0
  • 這是江南的初冬案训,這是被拋棄在田邊的韭菜买置,遠(yuǎn)處的大棚里又一茬的新韭在茁壯成長。 你本應(yīng)出現(xiàn)在人們的餐桌上供人品嘗 卻...
    鴻蒙一葉閱讀 311評論 1 1
  • 這一整子還挺消極的椿争,覺得就這么混下去吧怕膛,熬到年終獎(jiǎng)就好了。然而產(chǎn)生了這種想法之后秦踪,工作提不起勁來就算了褐捻,發(fā)現(xiàn)連生活...
    MM菌閱讀 415評論 0 0