美文网首页
UIScrollview与Autolayout的那点事

UIScrollview与Autolayout的那点事

作者: 男神nick | 来源:发表于2021-04-30 16:45 被阅读0次

    UIScrollview与Autolayout的那点事

    前言

    自从写了介绍Masonry那篇文章以后 就一直有人对UIScrollView的那个例子不是很理解 

    UIView *container= [UIViewnew];

    [scrollView addSubview:container];

    [containermas_makeConstraints:^(MASConstraintMaker *make) {

        make.edges.equalTo(scrollView);

        make.width.equalTo(scrollView);

    }];

    http://adad184.com/2015/12/01/scrollview-under-autolayout/

    相关文章

      网友评论

          本文标题:UIScrollview与Autolayout的那点事

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