美文网首页
masonry操作笔记

masonry操作笔记

作者: 程序马 | 来源:发表于2019-05-30 15:56 被阅读0次

多个等宽view

NSMutableArray *arr = [NSMutableArray array];

    UIButton *btnMore = [UIButton buttonWithType:UIButtonTypeSystem];

    [btnMoresetTitle:@"更多" forState:UIControlStateNormal];

    [btnMoresetTitleColor:[UIColor colorFromHexRGB:@"333333"] forState:UIControlStateNormal];

    [btnMoreaddTarget:self action:@selector(showMask:) forControlEvents:UIControlEventTouchUpInside];

    [_footerViewaddSubview:btnMore];

    UIButton *btnHold = [UIButton buttonWithType:UIButtonTypeSystem];

    [btnHoldsetTitle:@"暂停" forState:UIControlStateNormal];

    [btnHoldsetTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];

    btnHold.backgroundColor = [UIColor redColor];

    [_footerViewaddSubview:btnHold];

    UIButton *btnOver = [UIButton buttonWithType:UIButtonTypeSystem];

    [btnOversetTitle:@"完善需求" forState:UIControlStateNormal];

    [btnOversetTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];

    btnOver.backgroundColor=BaseColor;

    [_footerViewaddSubview:btnOver];

    [arraddObject:btnMore];

    [arraddObject:btnHold];

    [arraddObject:btnOver];

    [arrmas_distributeViewsAlongAxis:MASAxisTypeHorizontal withFixedSpacing:0 leadSpacing:0 tailSpacing:0];

    [arrmakeConstraints:^(MASConstraintMaker*make) {

        make.top.equalTo(self->_footerView.top);

        make.bottom.equalTo(self->_footerView.bottom);

    }];

相关文章

  • masonry操作笔记

    多个等宽view NSMutableArray *arr = [NSMutableArray array]; ...

  • masonry

    为什么要做这个笔记 masonry [https://github.com/SnapKit/Masonry]可以说...

  • iOS 生成虚线

    注:如果你Masonry中使用虚线,如下操作:

  • iOS框架·Masonry源码深度解析及学习启示:设计模式与链式

    传送门:链式编程小Demo 这篇文章是 Masonry 框架源码的解析和笔记。学习Masonry之前,先了解这个框...

  • 编程方式

    链式编程思想:将多个操作通过(.)链接在一起,返回值是block来实现.如masonry. masonry 响应式...

  • Masonry笔记

    - (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMa...

  • Masonry 笔记

    最近每周末都会看叶孤城的直播,对于我们iOS开发者来说,确实是一个福利,很感谢他们的分享精神,收获到的一些东西特此...

  • Masonry 笔记

    类似top和mas_top的区别 top是MASConstraintMaker的属性,mas_top是view的分...

  • Masonry的骚操作

    View中所欲子控件的位置 1.水平布局当前视图中所有子控件 最后设置高度与位置即可 设置最大与最小的宽度(高度同...

  • Masonry 介绍 2018-01-29

    介绍 Masonry 源码:https://github.com/Masonry/Masonry Masonry是...

网友评论

      本文标题:masonry操作笔记

      本文链接:https://www.haomeiwen.com/subject/rzsvtctx.html