Autolayout-NSLayoutConstraint代碼添加

作者:Mitchell 

一搔耕、代碼添加約束順序###

  • 創(chuàng)建控件
  • 將控件添加到父控件中
  • 關(guān)閉需要添加約束的控件的Autoresizing屬性
  • 創(chuàng)建約束

二、注意約束添加到哪里###

  • 如果是自身的屬性囚聚,如寬高,添加到自身
  • 如果是關(guān)于父視圖的約束,添加到父視圖
  • 如果是兩個(gè)控件珍语,添加到兩個(gè)控件共同的父視圖。

三竖幔、需求案例###

  • 案例1:
// 1.創(chuàng)建一個(gè)控件
    UIView *redView = [[UIView alloc] init];
    redView.backgroundColor = [UIColor redColor];
    [self.view addSubview:redView];
    
    // 1.如果是通過(guò)代碼添加Autolayout, 那么必須在添加約束之前禁用Autoresizing
    // 2.禁用Autoresizing時(shí), 必須是給誰(shuí)添加就禁用誰(shuí)的, 也就是說(shuō)如果禁用了父控件無(wú)效
    // 3.添加約束之前, 必須保證被約束的控件已經(jīng)添加到父控件中了
    //    self.view.translatesAutoresizingMaskIntoConstraints = NO;
    redView.translatesAutoresizingMaskIntoConstraints = NO;
    
    // 2.創(chuàng)建約束對(duì)象
    /*
     Item == 第一個(gè)控件
     attribute == 第一個(gè)控件的什么屬性
     relatedBy == 等于/小于等于/大于等于
     toItem == 第二個(gè)控件
     attribute == 第二個(gè)控件的什么屬性
     multiplier == 乘以多少
     constant == 加上多少
     */
    // 2.1頂部約束
    NSLayoutConstraint *topCos = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTop multiplier:1.0 constant:20];
    [self.view addConstraint:topCos];
    
    // 2.1左邊約束
    NSLayoutConstraint *leftCos = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeLeft multiplier:1.0 constant:20];
    [self.view addConstraint:leftCos];
    
    // 2.1底部約束
    NSLayoutConstraint *bottomCos = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeBottom multiplier:1.0 constant:-20];
    [self.view addConstraint:bottomCos];
    
    // 2.1右邊約束
    NSLayoutConstraint *rightCos = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeRight multiplier:1.0 constant:-20];
    [self.view addConstraint:rightCos];
    
    //    寫(xiě)在這里不行, 必須在設(shè)置約束之前添加
    //    [self.view addSubview:redView];
  • 案例2:
    // 1.創(chuàng)建兩個(gè)控件
    UIView *redView = [[UIView alloc] init];
    redView.backgroundColor = [UIColor redColor];
    
    UIView *blueView = [[UIView alloc] init];
    blueView.backgroundColor = [UIColor blueColor];
    
    // 2.將兩個(gè)控件添加到父控件中
    [self.view addSubview:redView];
    [self.view addSubview:blueView];
    
    // 3.關(guān)閉需要添加約束的控件的Autoresizing屬性
    redView.translatesAutoresizingMaskIntoConstraints = NO;
    blueView.translatesAutoresizingMaskIntoConstraints = NO;
    
    // 4.創(chuàng)建約束
    // 4.1藍(lán)色約束
    // 4.1.1頂部約束
    NSLayoutConstraint *blueTopCos = [NSLayoutConstraint constraintWithItem:blueView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTop multiplier:1.0 constant:20];
    [self.view addConstraint:blueTopCos];
    
    // 4.1.2左邊約束
    NSLayoutConstraint *blueLeftCos = [NSLayoutConstraint constraintWithItem:blueView attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeLeft multiplier:1.0 constant:20];
    [self.view addConstraint:blueLeftCos];
    
    // 4.1.3右邊約束
    NSLayoutConstraint *blueRightCos = [NSLayoutConstraint constraintWithItem:blueView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeRight multiplier:1.0 constant:-20];
    [self.view addConstraint:blueRightCos];
    
    // 4.1.4高度約束
    NSLayoutConstraint *blueHeightCos = [NSLayoutConstraint constraintWithItem:blueView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:kNilOptions multiplier:1.0 constant:50];
    [blueView addConstraint:blueHeightCos];
    
    // 4.2紅色約束
    // 4.2.1頂部約束
    NSLayoutConstraint *redTopCos = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:blueView attribute:NSLayoutAttributeBottom multiplier:1.0 constant:20];
    [self.view addConstraint:redTopCos];
    
    // 4.2.2右邊約束
    NSLayoutConstraint *redRightCos = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeRight multiplier:1.0 constant:-20];
    [self.view addConstraint:redRightCos];
    
    // 4.2.3高度約束
    NSLayoutConstraint *redHeightCos = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:blueView attribute:NSLayoutAttributeHeight multiplier:1.0 constant:0.0];
    [self.view addConstraint:redHeightCos];
    
    // 4.2.4寬度約束
    NSLayoutConstraint *redWidthCos = [NSLayoutConstraint constraintWithItem:redView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:blueView attribute:NSLayoutAttributeWidth multiplier:0.5 constant:0.0];
    [self.view addConstraint:redWidthCos];
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末板乙,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌募逞,老刑警劉巖蛋铆,帶你破解...
    沈念sama閱讀 211,290評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異放接,居然都是意外死亡刺啦,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門(mén)纠脾,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)玛瘸,“玉大人,你說(shuō)我怎么就攤上這事苟蹈『ǎ” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,872評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵慧脱,是天一觀的道長(zhǎng)渺绒。 經(jīng)常有香客問(wèn)我,道長(zhǎng)磷瘤,這世上最難降的妖魔是什么芒篷? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,415評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮采缚,結(jié)果婚禮上针炉,老公的妹妹穿的比我還像新娘。我一直安慰自己扳抽,他們只是感情好篡帕,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評(píng)論 6 385
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著贸呢,像睡著了一般镰烧。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上楞陷,一...
    開(kāi)封第一講書(shū)人閱讀 49,784評(píng)論 1 290
  • 那天怔鳖,我揣著相機(jī)與錄音,去河邊找鬼固蛾。 笑死结执,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的艾凯。 我是一名探鬼主播献幔,決...
    沈念sama閱讀 38,927評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼趾诗!你這毒婦竟也來(lái)了蜡感?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,691評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎郑兴,沒(méi)想到半個(gè)月后犀斋,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,137評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡情连,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評(píng)論 2 326
  • 正文 我和宋清朗相戀三年闪水,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蒙具。...
    茶點(diǎn)故事閱讀 38,622評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖朽肥,靈堂內(nèi)的尸體忽然破棺而出禁筏,到底是詐尸還是另有隱情,我是刑警寧澤衡招,帶...
    沈念sama閱讀 34,289評(píng)論 4 329
  • 正文 年R本政府宣布篱昔,位于F島的核電站,受9級(jí)特大地震影響始腾,放射性物質(zhì)發(fā)生泄漏州刽。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評(píng)論 3 312
  • 文/蒙蒙 一浪箭、第九天 我趴在偏房一處隱蔽的房頂上張望穗椅。 院中可真熱鬧,春花似錦奶栖、人聲如沸匹表。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)袍镀。三九已至,卻和暖如春冻晤,著一層夾襖步出監(jiān)牢的瞬間苇羡,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工鼻弧, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留设江,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,316評(píng)論 2 360
  • 正文 我出身青樓温数,卻偏偏與公主長(zhǎng)得像绣硝,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子撑刺,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評(píng)論 2 348

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