1 Star 0 Fork 1

957804349@qq.com / Masonry

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CHANGELOG.md 6.15 KB
一键复制 编辑 原始数据 按行查看 历史
Robert Payne 提交于 2016-09-14 20:31 . Updated Changelog

v1.0.2

  • Bug fix for array greaterThanOrEqualTo or lessthanOrEqualTo attributes (#377)
  • Bug fix for Podfile so examples work again (#374)
  • Improve view distribution performance (#374)
  • Unshare pod schemes (#374)

v1.0.1

- Added support for first/last baselines

Two additional attributes NSLayoutAttributeFirstBaseline and NSLayoutAttributeLastBaseline are now supported

v1.0.0

- Officially v1.0.0

Fixes some issues with install/uninstall vs activate/deactivate and modernises the project files

v0.6.4

- Add support for tvOS

v0.6.3

- Add support for view distribution (pingyourid)

https://github.com/SnapKit/Masonry/pull/225

v0.6.2

- Add support for iOS 8 margin attributes (CraigSiemens)

https://github.com/SnapKit/Masonry/pull/163

- Add support for leading and trailing insets (montehurd)

https://github.com/SnapKit/Masonry/pull/168

- Add support for Cartage (erichoracek)

https://github.com/SnapKit/Masonry/pull/182

- Fix memory usage of updateConstraints

v0.6.1

- Fix unused variable warning when compiled with NSAssert turned off

- Add aspect fit example (kouky)

https://github.com/SnapKit/Masonry/pull/148

v0.6.0

- Improved support of iOS 8

As of iOS 8 there is active property of NSLayoutConstraint available, which allows to (de)activate constraint without searching closest common superview.

- Added support of iPhone 6 and iPhone 6+ to test project

v0.5.3

- Fixed compilation errors on xcode6 beta

https://github.com/Masonry/Masonry/pull/84

v0.5.2

- Fixed compilation warning with Shorthand view Additions

https://github.com/cloudkite/Masonry/issues/71

v0.5.1

- Fixed compilation error when using objective-c++ (nickynick)

https://github.com/cloudkite/Masonry/pull/69

v0.5.0

- Fixed bug in mas_updateConstraints (Rolken)

Was not checking that the constraint relation was equivalent https://github.com/cloudkite/Masonry/pull/65

- Added mas_remakeConstraints (nickynick)

Similar to mas_updateConstraints however instead of trying to update existing constraints it Removes all constraints previously defined and installed for the view, allowing you to provide replacements without hassle.

https://github.com/cloudkite/Masonry/pull/63

- Added Autoboxing for scalar/struct attribute values (nickynick)

Autoboxing allows you to write equality relations and offsets by passing primitive values and structs

make.top.mas_equalTo(42);
make.height.mas_equalTo(20);
make.size.mas_equalTo(CGSizeMake(50, 100));
make.edges.mas_equalTo(UIEdgeInsetsMake(10, 0, 10, 0));
make.left.mas_equalTo(view).mas_offset(UIEdgeInsetsMake(10, 0, 10, 0));

by default these autoboxing macros are prefix with mas_ If you want the unprefixed version you need to add MAS_SHORTHAND_GLOBALS before importing Masonry.h (ie in your Prefix.pch)

https://github.com/cloudkite/Masonry/pull/62

- Added ability to chain view attributes

Composites are great for defining multiple attributes at once. The following example makes top, left, bottom, right equal to superview.

make.edges.equalTo(superview).insets(padding);

However if only three of the sides are equal to superview then we need to repeat quite a bit of code

make.left.equalTo(superview).insets(padding);
make.right.equalTo(superview).insets(padding);
make.bottom.equalTo(superview).insets(padding);
// top needs to be equal to `otherView`
make.top.equalTo(otherView).insets(padding);

This change makes it possible to chain view attributes to improve readability

make.left.right.and.bottom.equalTo(superview).insets(padding);
make.top.equalTo(otherView).insets(padding);

https://github.com/cloudkite/Masonry/pull/56

v0.4.0

- Fixed Xcode auto-complete support (nickynick)

Breaking Changes

If you are holding onto any instances of masonry constraints ie

// in public/private interface
@property (nonatomic, strong) id<MASConstraint> topConstraint;

You will need to change this to

// in public/private interface
@property (nonatomic, strong) MASConstraint *topConstraint;

Instead of using protocols Masonry now uses an abstract base class for constraints in order to get Xcode auto-complete support see http://stackoverflow.com/questions/14534223/

v0.3.2

- 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);

v0.3.1

- Added way to specify the same set of constraints to multiple views in an array (danielrhammond)

[@[view1, view2, view3] mas_makeConstraints:^(MASConstraintMaker *make) {
    make.baseline.equalTo(superView.mas_centerY);
    make.width.equalTo(@100);
}];

v0.3.0

- Added - (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *))block

which will update existing constraints if possible, otherwise it will add them. This makes it easier to use Masonry within the UIView - (void)updateConstraints method which is the recommended place for adding/updating constraints by apple.

- Updated examples for iOS7, added a few new examples.

- Added -isEqual: and -hash to MASViewAttribute [CraigSiemens].

1
https://gitee.com/admin_957804349/Masonry.git
git@gitee.com:admin_957804349/Masonry.git
admin_957804349
Masonry
Masonry
master

搜索帮助