__block UIView *lastView=nil;
int intes =SP_Floatt(10);
int num=5;
for (int i=0; i<10; i++) {
UIButton *imageB=[UIButton buttonWithType:UIButtonTypeCustom];
[imageB setImage:[UIImage imageNamed:[NSString stringWithFormat:@"1.png"]] forState:UIControlStateNormal];
[self.view addSubview:imageB];
[imageB mas_makeConstraints:^(MASConstraintMaker *make) {
make.height.mas_equalTo(SP_Floatt(80));
if (lastView) {
make.width.equalTo(lastView);
}else{
if (i % num!=0) {
make.width.mas_equalTo((weakSelf.view.frame.size.width-(num+1)*intes/11));
}
}
if (i%num==0) {
make.left.mas_equalTo(weakSelf.view).offset(intes);
}else{
make.left.mas_equalTo(lastView.mas_right).offset(intes);
}
if (i%num==(num-1)) {
make.right.mas_equalTo(weakSelf.view).offset(-intes);
}
if (i / num == 0) {
make.top.mas_equalTo(xuanze.mas_bottom).offset(intes);
} else {
make.top.mas_equalTo(xuanze.mas_bottom).offset(intes+80);
}
}];
lastView=imageB;
}
for循环加载视图使用Masory
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- var arr = new Array();arr[0] = '1';arr[1] = '2';arr[2] = ...
- FancyCoverFlow重写了gallery实现了画廊特效。这里记录下具体的使用方法:1 在布局文件中添加控件...