- Deprecated
mkt.super
, addedSuperview
instead. To migrate old code, follow the following pattern:view.left = view.mkt.super.left
->view.left = Superview.left
.
- Fix bug where
translatesAutoresizingMaskIntoConstraints
is set to false in views that didn't have it enabled before.
From now, if you have this expresion:
aView.mkt.left = otherView.mkt.left
Autolayout will be only activated in aView
, but otherView
will remain as it was.
- Swift 4.2
- Change the precedence of
=>
operator to decrease parenthesis when using it.
=>
can't be used with[NSLayoutConstraint]
anymore; now it must be used withCenterConstraints
,SizeConstraints
orEdgesConstraints
.- Added
centerWithinMargins
property.
- Initial version.