Masonry v0.3.2 Release Notes

  • 👍 - Added support for Mac OSX animator proxy (pfandrade)

    self.leftConstraint.animator.offset(20);
    

    - Added setter methods for NSLayoutConstraint constant proxies like offset, centerOffset, insets, sizeOffset.

    ⚡️ now you can update these values using more natural syntax

    self.edgesConstraint.insets(UIEdgeInsetsMake(20, 10, 15, 5));
    

    can now be written as:

    self.edgesConstraint.insets = UIEdgeInsetsMake(20, 10, 15, 5);