Masonry icon indicating copy to clipboard operation
Masonry copied to clipboard

Harness the power of AutoLayout NSLayoutConstraints with a simplified, chainable and expressive syntax. Supports iOS and OSX Auto Layout

Results 115 Masonry issues
Sort by recently updated
recently updated
newest added

remove inline of _MASBoxValue to eliminate duplicate code size caused by inline function, which is 1.04KB(arm64) for most includes call.

send a large parameter, for example: make.height.mas_equalTo(100000.f) crashed.

### New Issue Checklist 🚫 If this template is not filled out your issue **will** be closed with no comment. 🚫 * [x] I have looked at the [Documentation](https://github.com/SnapKit/Masonry/blob/master/README.md) *...

Support [layoutMarginsGuide](https://developer.apple.com/documentation/uikit/uiview/1622651-layoutmarginsguide?language=objc) of iOS 9.0

add layoutGuide support equalToSuperview & greaterThanOrEqualToSuperview & lessThanOrEqualToSuperview ```objc MAS_VIEW * contentView = MAS_VIEW.new; contentView.backgroundColor = self.randomColor; contentView.layer.borderColor = self.randomColor.CGColor; contentView.layer.borderWidth = 2 ; [self addSubview:contentView]; MAS_VIEW * leftView =...

### New Issue Checklist 🚫 If this template is not filled out your issue **will** be closed with no comment. 🚫 * [x] I have looked at the [Documentation](https://github.com/SnapKit/Masonry/blob/master/README.md) *...

### Issue Info Info | Value | -------------------------|-------------------------------------| Platform | ios Platform Version | 11 Masonry Version |1.0.2 Integration Method |cocoapods ### Issue Description Masonry iOS Examples--> Update Constraints -->...

### New Issue Checklist ### Issue Info 如下代码: - (instancetype)mas_closestCommonSuperview:(MAS_VIEW *)view { MAS_VIEW *closestCommonSuperview = nil; MAS_VIEW *secondViewSuperview = view; while (!closestCommonSuperview && secondViewSuperview) { MAS_VIEW *firstViewSuperview = self; while...