码迷,mamicode.com
首页 > 移动开发 > 详细

iOS自动布局

时间:2014-11-25 23:49:15      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   color   os   sp   for   on   


一开始用VFL语言都是这样实现自动布局的,一两个控件还好,多几个控件简直不能忍。
    _backgroundImageView = [[UIImageView alloc] init];
    _backgroundImageView.backgroundColor = [UIColor clearColor];
    _backgroundImageView.translatesAutoresizingMaskIntoConstraints = NO;
    [self addSubview:_backgroundImageView];
    
    NSMutableArray* contraints = [NSMutableArray new];
    [contraints addObjectsFromArray:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-0-[_backgroundImageView]-0-|"
                                                                            options:0 metrics:nil
                                                                              views:NSDictionaryOfVariableBindings(_backgroundImageView)]];
    [contraints addObjectsFromArray:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|-0-[_backgroundImageView]-0-|"
                                                                            options:0
                                                                            metrics:nil
                                                                              views:NSDictionaryOfVariableBindings(_backgroundImageView)]];
    [self addConstraints:contraints];


后来发现了Masonry 现在都是这样实现自动布局的:

    _scrollView = [[UIScrollView alloc] init];
    _scrollView.pagingEnabled = YES;
    _scrollView.backgroundColor = [UIColor clearColor];
    [self addSubview:_scrollView];

    [_scrollView makeConstraints:^(MASConstraintMaker *make) {
        make.left.equalTo(0);
        make.right.equalTo(0);
        make.top.equalTo(0);
        make.bottom.equalTo(0);
    }];

iOS自动布局

标签:blog   http   io   ar   color   os   sp   for   on   

原文地址:http://blog.csdn.net/ccnyou/article/details/41487733

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