1

メーソンリーを使用してビューをレイアウトすると、updateConstraints と remakeConstraints の間で動作がかなり異なることがわかります

- (id)init {
self.growingButton = [UIButton buttonWithType:UIButtonTypeSystem];
[self.growingButton setTitle:@"Grow Me!" forState:UIControlStateNormal];
self.growingButton.layer.borderColor = UIColor.greenColor.CGColor;
self.growingButton.layer.borderWidth = 3;

[self.growingButton addTarget:self action:@selector(didTapGrowButton:) forControlEvents:UIControlEventTouchUpInside];
[self addSubview:self.growingButton];

self.buttonSize = CGSizeMake(100, 100);

[self.growingButton makeConstraints:^(MASConstraintMaker *make) {
    make.center.equalTo(self);
    make.width.equalTo(@(self.buttonSize.width)).priorityLow();
    make.height.equalTo(@(self.buttonSize.height)).priorityLow();
    make.width.lessThanOrEqualTo(self);
    make.height.lessThanOrEqualTo(self);
}];
...
return self;
}
//click button 
- (void)didTapGrowButton:(UIButton *)button {

self.buttonSize = CGSizeMake(self.buttonSize.width * 1.3, self.buttonSize.height * 1.3);
NSLog(@"===============================");
[self.growingButton updateConstraints:^(MASConstraintMaker *make) {
//    [self.growingButton remakeConstraints:^(MASConstraintMaker *make) {
    make.center.equalTo(self);
    make.width.equalTo(@(self.buttonSize.width)).priorityLow();
    make.height.equalTo(@(self.buttonSize.height)).priorityLow();
    make.width.lessThanOrEqualTo(self);
    make.height.lessThanOrEqualTo(self);
}];
}

私が使用するupdateConstraintsと、ボタンは期待どおりに成長しますが、使用するremakeConstraintsと、ボタンのフレームは「NSRect: {{127, 237}, {66, 30}}」のままです

なぜだろう?

4

1 に答える 1

1

Masonry の GitHub ページで報告された問題の説明を次に示します。 https://github.com/SnapKit/Masonry/issues/81

mas_updateConstraints: 制約定数のみを変更する必要がある軽量の更新に適しています。

mas_remakeConstraints: このビューに対して以前に作成されたすべての制約をアンインストールするメソッド。

すべての制約を完全にアンインストールすると、結果に違いが生じる可能性があります。

于 2016-08-12T17:24:03.270 に答える