SDAutoLayout 和 Masonry

Masonry和SDAutoLayout最大的不同就是上面所说一个基于对frame的设置,一个是基于NSLayoutConstraint.

UIView*view1=UIView.new;

view1.backgroundColor=[UIColor greenColor];

[self.view addSubview:view1];

view1.sd_layout.rightSpaceToView(superView,20).topSpaceToView(superView,100).widthIs(100).heightIs(100);

你可能感兴趣的:(SDAutoLayout 和 Masonry)