美文网首页
Masonry第三方布局九宫格的使用随笔

Masonry第三方布局九宫格的使用随笔

作者: zhengchengxia | 来源:发表于2018-06-26 16:17 被阅读113次

Masonry是个好东西,在当前尺寸各异的iOS开发适配中发挥着至关重要的作用,由于项目中Masonry布局用的比较多,对于UI布局也有了一些自己的理解,经常会有人问道Masonry布局九宫格要怎么布局呢,单行、多行要怎么做到自动布局呢,之前用frame布局九宫格需要2层for循环,各种判断才可以完成一套九宫格布局,那使用Masonry是不是也这么麻烦呢,答案是否定的!下面把Masonry布局单行,多行的代码贴出来,注释的很详细,有需要的同学可以参考参考,可能对于Masonry的使用会有不一样的理解。

图片

- (void)viewDidLoad {

    [super viewDidLoad];

    [self daohang];

    self.view.backgroundColor = [UIColor blackColor];

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

    button.frame = CGRectMake((self.view.frame.size.width - 100)/2, 64, 100, 50);

    [button setTitle:@"wedding" forState:UIControlStateNormal];

    button.backgroundColor = [UIColor brownColor];

    [button addTarget:self action:@selector(playMovie) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:button];

//    int padding = 10;

//    UIView *superview = self.view;

    UIButton *hxButton = [UIButton buttonWithType:UIButtonTypeCustom];

    hxButton.backgroundColor = [UIColor redColor];

    [hxButton setTitle:@"涵予" forState:UIControlStateNormal];

    [hxButton addTarget:self action:@selector(hxBtnClick) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:hxButton];

    [hxButton mas_makeConstraints:^(MASConstraintMaker *make) {

        make.top.mas_greaterThanOrEqualTo(button.mas_top).offset(100);

        make.left.mas_equalTo(button.mas_left).offset(0);

        //        make.bottom.mas_equalTo(superview.mas_bottom).offset(-padding);

        //        make.right.mas_equalTo(superview.mas_right).offset(-padding);

        make.width.equalTo(button.mas_width);

        make.width.mas_equalTo(100);

        make.height.mas_equalTo(50);

        make.height.offset(50);

    }];

    UIView *containView = [[UIView alloc] init];

    [self.view addSubview:containView];

    containView.backgroundColor = [UIColor yellowColor];

    [containView mas_makeConstraints:^(MASConstraintMaker *make) {

        make.left.mas_equalTo(15);

        make.right.mas_equalTo(-15);

        make.top.mas_equalTo(260);

        make.height.equalTo(@300);

    }];

    CGFloat marginX = 10;  //按钮距离左边和右边的距离

    CGFloat marginY = 1;  //距离上下边缘距离

//    CGFloat toTop = 200;  //按钮距离顶部的距离

    CGFloat gapX = 10;    //左右按钮之间的距离

    CGFloat gapY = 10;    //上下按钮之间的距离

    NSInteger col = 3;    //这里只布局5列

//    NSInteger count = 13;  //这里先设置布局任意个按钮

    CGFloat width = (self.view.frame.size.width - 70) / 3;

    UIButton *last = nil;

    for (int i = 0; i < 7; i++) {

        UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];

        [containView addSubview:button1];

        if(i % 2 == 0) {

            button1.backgroundColor = [UIColor redColor];

        } else {

            button1.backgroundColor = [UIColor darkGrayColor];

        }

        [button1 mas_makeConstraints:^(MASConstraintMaker *make) {

            make.width.mas_equalTo(width);

            make.height.mas_equalTo(50);

            CGFloat top = 10 + marginY + (i / col) * (50 + gapY);

            make.top.mas_offset(top);

            if(!last || (i%col) == 0) {

                make.left.mas_offset(marginX);

            } else {

                make.left.mas_equalTo(last.mas_right).mas_offset(gapX);

            }

        }];

        last = button1;

    }

}

相关文章

  • 2015.10.12

    1.使用collectionview创建了九宫格布局 2.使用masonry进行自适应布局。 3.学习了50个英文...

  • AutoLayout之Masonry

    什么是Masonry Masonry是一个对原生NSLayoutConstraint布局进行封装的第三方自动布局框...

  • iOS 的布局

    iOS布局可以xib文件布局,也可以代码布局,代码布局一般使用第三方框架masonry可以用pods导入mason...

  • OC_九宫格布局工具

    实现基于: iOS Masonry九宫格布局 - 一行代码实现九宫格 demo点这里 以后你可能会这样布局九宫格 ...

  • 常用的Masonry布局

    要想使用 Masonry 这个第三方进行布局,就要先对它进行一定简单的了解。笔者个人理解的 Masonry 是一个...

  • Third Party

    A:推荐使用 B:修改使用 C:参考使用 自动布局Masonry(A)iOS自动布局框架-Masonry详解SDA...

  • iOS masonry九宫格 单行 多行布局

    iOS masonry九宫格 单行 多行布局 Masonry是个好东西,在当前尺寸各异的iOS开发适配中发挥着至关...

  • Masonry1.1.0简单分析

    Masonry介绍 Masonry是一个对系统NSLayoutConstraint进行封装的第三方自动布局框架,采...

  • Masonry源码分析

    iOS 源代码分析 --- Masonry Masonry 是 Objective-C 中用于自动布局的第三方框架...

  • Masonry第三方布局九宫格的使用随笔

    Masonry是个好东西,在当前尺寸各异的iOS开发适配中发挥着至关重要的作用,由于项目中Masonry布局用的比...

网友评论

      本文标题:Masonry第三方布局九宫格的使用随笔

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