首页 > 代码库 > iOS自动布局
iOS自动布局
一开始用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自动布局
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。