github网址:https://github.com/SnapKit/Masonry
更多使用方法可以参阅文档
基本写法如下:
[_userNameInput mas_makeConstraints:^(MASConstraintMaker *make) {
make.centerX.equalTo(self.view);
make.top.equalTo(self.view.mas_top).offset(100);
make.width.equalTo(@250);
make.height.equalTo(@50);
}];
居中,上下左右,宽度高度,都可以设置,使用起来非常的方便。