码迷,mamicode.com
首页 > 其他好文 > 详细

UIStackView使用 (堆视图)

时间:2016-12-31 15:36:18      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:blog   const   sel   str   ima   div   objc   多个   object   

一基本使用

  1创建多个子控件

   

for (int i = 0; i < 3; i++)
    {
        UIButton *imgBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        imgBtn.backgroundColor = [UIColor redColor];
        [imgBtn setNormalImageWithName:@""];
        [imgBtns addObject:imgBtn];
    }

   2创建堆控件

//创建堆控件
    UIStackView *stackView = [[UIStackView alloc] initWithArrangedSubviews:imgBtns];
    [self.view addSubview:stackView];
    [stackView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.mas_equalTo(titleLabel.mas_bottom).offset(10);
        make.left.mas_equalTo(60);
        make.right.mas_equalTo(-60);
        make.height.mas_equalTo(80);
    }];

 

  3设置属性

stackView.axis = UILayoutConstraintAxisHorizontal;
stackView.distribution = UIStackViewDistributionFillEqually;
stackView.spacing = 35;

 

  

UIStackView使用 (堆视图)

标签:blog   const   sel   str   ima   div   objc   多个   object   

原文地址:http://www.cnblogs.com/dzq1991/p/6239329.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!