自動布局 NSLayoutConstraint

AutoLayout概念是蘋果自iOS6開始引入的概念雳殊。

目前為止橘沥,實現(xiàn)自動布局技術(shù)選型方面也可以使用xib和storyboard。在開發(fā)過程中通常登錄夯秃、注冊等變動可能性較小的視圖座咆,我會采用xib開發(fā),其他頁面通常會采用Masonry布局仓洼。xib和手碼各有優(yōu)勢介陶,視情況而定。

關(guān)于NSLayoutAttributeLeading和NSLayoutAttributeTrailing色建,前邊和后邊并不是總是為左邊和右邊的哺呜,有些國家的前邊是右邊后邊是左邊所以這樣設(shè)定是為了國際化考慮。還有視圖基準(zhǔn)線NSLayoutAttributeBaseline通常是指視圖的底部放文字的地方箕戳。

使用NSLayoutConstraint之前某残,我們需要確定一點:為了防止constraint和view本身的autoresizing屬性沖突,我們需要設(shè)置view的屬性:

view.translatesAutoresizingMaskIntoConstraints = NO;

用代碼來設(shè)置AutoLayout陵吸,我們向需要添加autoLayout的視圖使用該方法:

+(instancetype)constraintWithItem:(id)view1 attribute:(NSLayoutAttribute)attr1 relatedBy:(NSLayoutRelation)relation toItem:(id)view2 attribute:(NSLayoutAttribute)attr2 multiplier:(CGFloat)multiplier constant:(CGFloat)c;

上面方法詳解:

該方法實際上滿足一個數(shù)學(xué)關(guān)系

view1 =(>=,<=) multiplier * view2 + constant

參數(shù)說明:

view1:是需要添加約束的視圖.

attr1: 是view1選擇的屬性,什么樣的位置 (上,下,左,右,中心點等)添加約束.

relation: 中間的關(guān)系 (=, >=, <=)

multiplier: 乘因子,就是倍數(shù)

view2: 添加約束的參照視圖

attr2: 是view2選擇的屬性,相對什么樣的位置(上,下,左,右,中心點等).

constant: 就是偏移量?

理解什么原理最好的方法就是舉例,那就舉個例子:

例子: 設(shè)置第一個視圖是第二個視圖寬度的2倍, 第一個視圖為view1,第二個視圖為view2

?[self.view addSubview:self.view1];

? ? [self.view addSubview:self.view2];


? ? NSLayoutConstraint * view1_top = [NSLayoutConstraint constraintWithItem:self.view1 attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeTop multiplier:1 constant:100];

? ? NSLayoutConstraint * view1_left = [NSLayoutConstraint constraintWithItem:self.view1 attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeLeft multiplier:1 constant:20];

? ? NSLayoutConstraint * view1_width = [NSLayoutConstraint constraintWithItem:self.view1 attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeWidth multiplier:0 constant:200];

? ? NSLayoutConstraint * view1_height = [NSLayoutConstraint constraintWithItem:self.view1 attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeHeight multiplier:0 constant:200];

//把約束添加到父視圖上

? ? [self.viewaddConstraints:@[view1_top, view1_left, view1_width, view1_height]];


? ? NSLayoutConstraint * view2_top = [NSLayoutConstraint constraintWithItem:self.view2 attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:self.view1 attribute:NSLayoutAttributeBottom multiplier:1 constant:10];

? ? NSLayoutConstraint * view2_left = [NSLayoutConstraint constraintWithItem:self.view2 attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:self.view1 attribute:NSLayoutAttributeLeft multiplier:1 constant:0];

? ? NSLayoutConstraint * view2_width = [NSLayoutConstraint constraintWithItem:self.view2 attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:self.view1 attribute:NSLayoutAttributeWidth multiplier:2 constant:0];

? ? NSLayoutConstraint * view2_height = [NSLayoutConstraint constraintWithItem:self.view2 attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:self.view1 attribute:NSLayoutAttributeHeight multiplier:1 constant:0];

//把約束添加到父視圖上

? ? [self.viewaddConstraints:@[view2_top, view2_left, view2_width, view2_height]];

我們所有可以控制的屬性:

這里解釋一下前邊NSLayoutAttributeLeading和后邊NSLayoutAttributeTrailing玻墅,這里前邊和后邊并不是總是為左邊和右邊的,有些國家的前邊是右邊后邊是左邊所以這樣設(shè)定是為了國際化考慮壮虫。還有視圖基準(zhǔn)線NSLayoutAttributeBaseline通常是指視圖的底部放文字的地方澳厢。


這里講一下比較容易犯錯的地方:

1、添加約束前確定已經(jīng)把需要布局的子view添加到父view上了

2囚似、一定要禁止將Autoresizing Mask轉(zhuǎn)換為約束

3剩拢、要把子view的約束加在父view上

4、因為iOS中原點在左上角所以使用offset時注意right和bottom用負數(shù)

子view在父view的中間饶唤,且子view長300徐伐,高200。

[self.view setBackgroundColor:[UIColor redColor]];

? ? //創(chuàng)建子view

? ? UIView*subView = [[UIViewalloc]init];

? ? [subViewsetBackgroundColor:[UIColor blackColor]];

? ? [self.viewaddSubview:subView];

? ? //使用Auto Layout約束搬素,禁止將Autoresizing Mask轉(zhuǎn)換為約束

? ? [subViewsetTranslatesAutoresizingMaskIntoConstraints:NO];

? ? //layout 子view

? ? //子view的中心橫坐標(biāo)等于父view的中心橫坐標(biāo)

? ? NSLayoutConstraint *constrant1 = [NSLayoutConstraint constraintWithItem:subView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0.0];

? ? //子view的中心縱坐標(biāo)等于父view的中心縱坐標(biāo)

? ? NSLayoutConstraint *constrant2 = [NSLayoutConstraint constraintWithItem:subView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self.view attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0.0];

? ? //子view的寬度為300

? ? NSLayoutConstraint *constrant3 = [NSLayoutConstraint constraintWithItem:subView attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationGreaterThanOrEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:300.0];

? ? //子view的高度為200

? ? NSLayoutConstraint *constrant4 = [NSLayoutConstraint constraintWithItem:subView attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationGreaterThanOrEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:1.0 constant:200.0];

? ? //把約束添加到父視圖上

? ? NSArray*array = [NSArray arrayWithObjects:constrant1, constrant2, constrant3, constrant4,nilnil];

? ? [self.view addConstraints:array];

這里需要注意的是:

1呵晨、如果是設(shè)置view自身的屬性,不涉及到與其他view的位置約束關(guān)系熬尺。比如view自身的寬、高等約束時谓罗,方法constraintWithItem:的第四個參數(shù)view2(secondItem)應(yīng)設(shè)為

nil粱哼;且第五個參數(shù)attr2(secondAttribute)應(yīng)設(shè)為?NSLayoutAttributeNotAnAttribute?。

2檩咱、在設(shè)置寬和高這兩個約束時揭措,relatedBy參數(shù)使用的是?NSLayoutRelationGreaterThanOrEqual胯舷,而不是?NSLayoutRelationEqual。因為 Auto Layout 是相對布局绊含,所以通常你不應(yīng)該直接設(shè)置寬度和高度這種固定不變的值桑嘶,除非你很確定視圖的寬度或高度需要保持不變。


更新/修改約束

先來看一下 NSLayoutConstraint 的API躬充,貌似只有constant屬性可以修改逃顶,其它都是只讀的。所以對于現(xiàn)有約束的修改和更新都是圍繞NSLayoutConstraint實例的constant屬性展開的充甚。

1以政、如果你是使用 Xib/StoryBoard 的話,在程序運行時想動態(tài)的改變視圖的約束伴找,你可以這樣做:

約束Constraint也可以像控件一樣做IBOutlet鏈接盈蛮,通過拖線關(guān)聯(lián)到文件。(事例這里是改變子view相對于父view的top約束)

首先在你的ViewController的頭文件里定義一個約束屬性:

@property (nonatomic, weak) IBOutlet NSLayoutConstraint *topConstraint ;

#import @interface LayoutConstraintViewController : UIViewController

@property (nonatomic, weak) IBOutlet NSLayoutConstraint *topConstraint;

@end

然后在XIB里選中 File’s Owner技矮,選中Outlet欄目抖誉。將對應(yīng)的Outlet拖動到View對應(yīng)Constraint連接起來就可以了。跟button/label做鏈接一摸一樣的衰倦。


這樣我們就可以獲得view上面的某個具體約束了袒炉,然后就可以在文件中對這個約束進行我們想要的修改。

//更新約束

self.topConstraint.constant = 10;

總結(jié)來說就是:拖線關(guān)聯(lián)到文件獲得約束耿币,修改約束的constant屬性梳杏。

2、如果你是使用 Xib/StoryBoard ,但是不想通過上述拉線的方式獲得約束然后再去更新它,你還可以采用代碼的方式修改約束:

但是無論采用哪種方式实辑,我們都要遵循Auto Layout 的約束更新機制:想要更新視圖上面的約束堤撵,就要先找到對應(yīng)的約束再去更新它。遍歷view上面的所有約束齐板,查找到要更新的約束再進行更新。

所以我們要像上面一樣要先獲得top約束。在代碼中的體現(xiàn)就是通過約束的標(biāo)識字段霞势,在其父view的constraints數(shù)組中遍歷查找。這是因為每個view的constraints數(shù)組中保存的實際上是 layout 子view所需的約束的集合斑鸦。

我們可以通過下面的輔助函數(shù)實現(xiàn):

NSArray *constrains = self.view.constraints;

for (NSLayoutConstraint* constraint in constrains)?

{

????if (constraint.firstAttribute == NSLayoutAttributeTop) {

????constraint.constant = 10;

????}

}

這里只判斷了一個標(biāo)識字段(NSLayoutAttributeTop)愕贡,但是大多數(shù)情況下view上面的約束依賴不會那么簡單,所以需要查找判斷多個標(biāo)識字段巷屿,才能找到固以。

3、如果你是使用代碼布局,那就用上面2介紹的方法更新約束憨琳,或者在添加約束之前先將該約束記錄下來诫钓,方便后面的更新修改。

Auto Layout 關(guān)于更新約束的幾個方法

setNeedsLayout:告知頁面需要更新篙螟,但是不會立刻開始更新菌湃。執(zhí)行后會立刻調(diào)用layoutSubviews。

layoutIfNeeded:告知頁面布局立刻更新遍略。所以一般都會和setNeedsLayout一起使用惧所。如果希望立刻生成新的frame需要調(diào)用此方法,利用這點一般布局動畫可以在更新布局后直接使用這個方法讓動畫生效墅冷。

layoutSubviews:系統(tǒng)重寫布局纯路。

setNeedsUpdateConstraints:告知需要更新約束,但是不會立刻開始寞忿。

updateConstraintsIfNeeded:告知立刻更新約束驰唬。

updateConstraints:系統(tǒng)更新約束。

這么多方法中腔彰,目前我使用比較多的是 layoutIfNeeded 叫编。因為在Auto Layout 實現(xiàn)動畫的時候,layoutIfNeeded 方法可以立刻生成新的frame特性是一大利器霹抛。

使用 Auto Layout (NSLayoutConstraint)實現(xiàn)動畫

目前貌似還有很多人對于 Auto Layout 的動畫實現(xiàn)還不是很了解搓逾。畢竟以前我們處理動畫之類的交互大都是和view的frame屬性打交道,即使用傳統(tǒng)的 animation方法修改view的frame杯拐。大致類似于

CGRectnewFrame = view.frame;

? ? newFrame.size.height =300;

? ? [UIView animateWithDuration:3.0 animations:^{

? ? ? ? view.frame = newFrame;

? ? }completion:^(BOOLfinished) {

? ? }];

那么在Auto Layout下我們又該如何處理相關(guān)的動畫呢霞篡?根據(jù)前面說到的Auto Layout布局約束的原理,在某個時刻約束也是會被還原成frame使視圖顯示端逼,這個時刻可以通過layoutIfNeeded這個方法來進行控制朗兵,可以立刻生成新的frame并展示出來,從而實現(xiàn)動畫效果顶滩。

//start animations

? ? //先根據(jù)初始化添加的約束生成最初的frame并顯示view

? ? [self.view layoutIfNeeded];

? ? [UIView animateWithDuration:3.0 animations:^{

? ? ? ? //遍歷查找view的heigh約束余掖,并修改它

? ? ? ? NSArray*constrains =self.view.constraints;

? ? ? ? for(NSLayoutConstraint* constraintinconstrains) {

? ? ? ? ? ? if (constraint.firstAttribute == NSLayoutAttributeHeight) {

? ? ? ? ? ? ? ? constraint.constant=300;

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? //更新約束? 在某個時刻約束會被還原成frame使視圖顯示

? ? ? ? [self.view layoutIfNeeded];

? ? }completion:^(BOOLfinished) {

? ? }];

參考:?IOS--通過代碼方式使用AutoLayout (NSLayoutConstraint + Masonry) - timtian008的博客 - CSDN博客

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市礁鲁,隨后出現(xiàn)的幾起案子盐欺,更是在濱河造成了極大的恐慌,老刑警劉巖仅醇,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件冗美,死亡現(xiàn)場離奇詭異,居然都是意外死亡析二,警方通過查閱死者的電腦和手機墩衙,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來甲抖,“玉大人漆改,你說我怎么就攤上這事∽佳瑁” “怎么了挫剑?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長柱衔。 經(jīng)常有香客問我樊破,道長,這世上最難降的妖魔是什么唆铐? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任哲戚,我火速辦了婚禮,結(jié)果婚禮上艾岂,老公的妹妹穿的比我還像新娘顺少。我一直安慰自己,他們只是感情好王浴,可當(dāng)我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布脆炎。 她就那樣靜靜地躺著,像睡著了一般氓辣。 火紅的嫁衣襯著肌膚如雪秒裕。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天钞啸,我揣著相機與錄音几蜻,去河邊找鬼。 笑死体斩,一個胖子當(dāng)著我的面吹牛梭稚,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播硕勿,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼哨毁,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了源武?” 一聲冷哼從身側(cè)響起扼褪,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎粱栖,沒想到半個月后话浇,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡闹究,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年幔崖,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡赏寇,死狀恐怖吉嫩,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情嗅定,我是刑警寧澤自娩,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站渠退,受9級特大地震影響忙迁,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜碎乃,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一姊扔、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧梅誓,春花似錦恰梢、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至愧怜,卻和暖如春呀页,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背拥坛。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工蓬蝶, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人猜惋。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓丸氛,卻偏偏與公主長得像,于是被迫代替她去往敵國和親著摔。 傳聞我的和親對象是個殘疾皇子缓窜,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,925評論 2 344

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