場景:
一個(gè)storyboard里放著一個(gè)UIViewController,在其view上放了一個(gè)UIScrollView芯丧,然后里面放了很多控件,并且已經(jīng)布局好了世曾,然后點(diǎn)擊里面的加號按鈕缨恒,會添加一個(gè)一樣的控件進(jìn)來,如圖
初步想法度硝,是改變之前storyboard中的一個(gè)約束肿轨,拉長并放入自定義的xib的view,由于單詞太長寿冕,后面簡稱sb蕊程。
/**
原來 界面上的加號按鈕事件
*/
- (IBAction)didTapAddBtn:(UIButton *)sender {
// 加一個(gè)AddTest到界面上
AddTest *addView = [AddTest viewFromXib];
[self.scrollView addSubview:addView];
__block int addViewCount = 0;
[self.scrollView.subviews enumerateObjectsUsingBlock:^(__kindof UIView * _Nonnull subV, NSUInteger idx, BOOL * _Nonnull stop) {
if ([subV isKindOfClass:NSClassFromString(@"AddTest")]) {
addViewCount ++;
}
}];
// 第一個(gè)
if (addViewCount == 1) {
// 這個(gè)是之前兩個(gè)控件之前的垂直約束,我們只有把這個(gè)垂直約束變大了驼唱,才能放入自定義xib藻茂,位置更合理
self.nextViewToAddBtnVerticalConstraint.constant = 12+12+44;
// 新添加 的view的頂部跟之前有加號那個(gè)view的底部垂直間距為12
NSLayoutConstraint *verticalToOriginAddViewBottom =
[NSLayoutConstraint constraintWithItem:addView
attribute:NSLayoutAttributeTop
relatedBy:NSLayoutRelationEqual
toItem:self.originAddView
attribute:NSLayoutAttributeBottom
multiplier:1.0
constant:12];
// 新添加 的view的頂部跟之前有加號那個(gè)view的左邊一樣
NSLayoutConstraint *leading =
[NSLayoutConstraint constraintWithItem:addView
attribute:NSLayoutAttributeLeading
relatedBy:NSLayoutRelationEqual
toItem:self.originAddView
attribute:NSLayoutAttributeLeading
multiplier:1.0
constant:0];
// 新添加 的view的頂部跟之前有加號那個(gè)view的右邊一樣
NSLayoutConstraint *trailing =
[NSLayoutConstraint constraintWithItem:addView
attribute:NSLayoutAttributeTrailing
relatedBy:NSLayoutRelationEqual
toItem:self.originAddView
attribute:NSLayoutAttributeTrailing
multiplier:1.0
constant:0];
// 新添加 的view的高度為44惕鼓,之前有加號那個(gè)view也是44
NSLayoutConstraint *heigth =
[NSLayoutConstraint constraintWithItem:addView
attribute:NSLayoutAttributeHeight
relatedBy:NSLayoutRelationEqual
toItem:nil
attribute:NSLayoutAttributeNotAnAttribute
multiplier:0.0
constant:44];
// 自身約束添加到自身上
[addView addConstraint:heigth];
// 非自身約束题造,子控件與子控件之間的相對約束提针,添加到大家的父控件上
[self.scrollView addConstraints:@[verticalToOriginAddViewBottom, leading, trailing]];
} else {
// 不是第一個(gè)
}
}
運(yùn)行腥寇,點(diǎn)擊加號蹋肮,問題來了捡鱼,scrollview顯示不正常爹脾,添加的xib的view也不正常救氯,寬度也不對惭婿。
反復(fù)查看不恭,約束正確也與,無非就是vertical leading trailing 自身高度44約束 啊财饥,沒有問題换吧,然后不用代碼加這個(gè)控件,直接在storyboard中添加這個(gè)控件钥星。
跟代碼的約束一樣沾瓦。
自身高度約束44
然后leading trailing相同,vertical為12,也跟代碼約束一樣贯莺。
奇怪同樣的約束风喇,用代碼添加就不行,在IB中添加就正常乖篷,如圖响驴,在IB中添加view正常。
那么問題來了撕蔼,代碼添加約束跟在IB直接托約束的區(qū)別在哪里豁鲤,肯定是這個(gè)區(qū)別導(dǎo)致了這個(gè)不正常的問題。其實(shí)鲸沮,那會兒點(diǎn)加號琳骡,是有打印的。如圖讼溺。
跳到UIView頭文件會發(fā)現(xiàn)一個(gè)屬性
/* By default, the autoresizing mask on a view gives rise to constraints that fully determine
the view's position. This allows the auto layout system to track the frames of views whose
layout is controlled manually (through -setFrame:, for example).
When you elect to position the view using auto layout by adding your own constraints,
you must set this property to NO. IB will do this for you.
*/
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints NS_AVAILABLE_IOS(6_0); // Default YES
谷歌翻譯
默認(rèn)情況下楣号,視圖上的自動調(diào)整掩碼會產(chǎn)生完全確定的約束
視圖的位置。 這允許自動布局系統(tǒng)跟蹤視圖的幀
布局是手動控制的(例如通過-setFrame:)怒坯。
當(dāng)您通過添加自己的約束選擇使用自動布局定位視圖時(shí)炫狱,
您必須將此屬性設(shè)置為NO。 IB會為你做這個(gè)剔猿。
最后一句話视译, IB會為你做這個(gè)。是重點(diǎn)归敬。
然后酷含, 我們給addView加上這個(gè)屬性。
/**
原來 界面上的加號按鈕事件
*/
- (IBAction)didTapAddBtn:(UIButton *)sender {
// 加一個(gè)AddTest到界面上
AddTest *addView = [AddTest viewFromXib];
addView.translatesAutoresizingMaskIntoConstraints = NO;// 這里加上
[self.scrollView addSubview:addView];
再次運(yùn)行汪茧,正常椅亚。
其他解決方案。
[addView mas_makeConstraints:^(MASConstraintMaker *make) {
make.leading.trailing.height.equalTo(self.originAddView);
make.top.equalTo(self.originAddView.mas_bottom).offset(12);
}];
總結(jié):
當(dāng)把一個(gè)xib放入一個(gè)有autolayout的view上舱污,一定要把這個(gè)xib的view的translatesAutoresizingMaskIntoConstraints設(shè)置成NO;