old mode 100644
new mode 100755
| | |
| | | // |
| | | // MASConstraintBuilder.h |
| | | // MASConstraintMaker.h |
| | | // Masonry |
| | | // |
| | | // Created by Jonas Budelmann on 20/07/13. |
| | |
| | | MASAttributeCenterY = 1 << NSLayoutAttributeCenterY, |
| | | MASAttributeBaseline = 1 << NSLayoutAttributeBaseline, |
| | | |
| | | #if TARGET_OS_IPHONE |
| | | #if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100) |
| | | |
| | | MASAttributeFirstBaseline = 1 << NSLayoutAttributeFirstBaseline, |
| | | MASAttributeLastBaseline = 1 << NSLayoutAttributeLastBaseline, |
| | | |
| | | #endif |
| | | |
| | | #if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) |
| | | |
| | | MASAttributeLeftMargin = 1 << NSLayoutAttributeLeftMargin, |
| | | MASAttributeRightMargin = 1 << NSLayoutAttributeRightMargin, |
| | |
| | | @property (nonatomic, strong, readonly) MASConstraint *centerY; |
| | | @property (nonatomic, strong, readonly) MASConstraint *baseline; |
| | | |
| | | #if TARGET_OS_IPHONE |
| | | #if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) || (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101100) |
| | | |
| | | @property (nonatomic, strong, readonly) MASConstraint *firstBaseline; |
| | | @property (nonatomic, strong, readonly) MASConstraint *lastBaseline; |
| | | |
| | | #endif |
| | | |
| | | #if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 80000) || (__TV_OS_VERSION_MIN_REQUIRED >= 9000) |
| | | |
| | | @property (nonatomic, strong, readonly) MASConstraint *leftMargin; |
| | | @property (nonatomic, strong, readonly) MASConstraint *rightMargin; |
| | |
| | | /** |
| | | * initialises the maker with a default view |
| | | * |
| | | * @param view any MASConstrait are created with this view as the first item |
| | | * @param view any MASConstraint are created with this view as the first item |
| | | * |
| | | * @return a new MASConstraintMaker |
| | | */ |