9.25Masonry-master ,OC自动布局第三方框架

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);

}];

居中,上下左右,宽度高度,都可以设置,使用起来非常的方便。

你可能感兴趣的:(9.25Masonry-master ,OC自动布局第三方框架)