...
|
...
|
@@ -27,6 +27,13 @@ |
|
|
/**
|
|
|
* Modifies the NSLayoutConstraint constant,
|
|
|
* only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following
|
|
|
* NSLayoutAttributeTop, NSLayoutAttributeLeft, NSLayoutAttributeBottom, NSLayoutAttributeRight
|
|
|
*/
|
|
|
- (MASConstraint * (^)(CGFloat inset))inset;
|
|
|
|
|
|
/**
|
|
|
* Modifies the NSLayoutConstraint constant,
|
|
|
* only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following
|
|
|
* NSLayoutAttributeWidth, NSLayoutAttributeHeight
|
|
|
*/
|
|
|
- (MASConstraint * (^)(CGSize offset))sizeOffset;
|
...
|
...
|
@@ -166,6 +173,13 @@ |
|
|
/**
|
|
|
* Modifies the NSLayoutConstraint constant,
|
|
|
* only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following
|
|
|
* NSLayoutAttributeTop, NSLayoutAttributeLeft, NSLayoutAttributeBottom, NSLayoutAttributeRight
|
|
|
*/
|
|
|
- (void)setInset:(CGFloat)inset;
|
|
|
|
|
|
/**
|
|
|
* Modifies the NSLayoutConstraint constant,
|
|
|
* only affects MASConstraints in which the first item's NSLayoutAttribute is one of the following
|
|
|
* NSLayoutAttributeWidth, NSLayoutAttributeHeight
|
|
|
*/
|
|
|
- (void)setSizeOffset:(CGSize)sizeOffset;
|
...
|
...
|
|