fix: 修正验收问题
This commit is contained in:
@@ -143,7 +143,18 @@ exitCurrentRoom:(void(^)(void))exit {
|
||||
} else {
|
||||
self.ballImageView.hidden = NO;
|
||||
}
|
||||
|
||||
|
||||
[self.coinsLabel mas_remakeConstraints:^(MASConstraintMaker *make) {
|
||||
if (self.bigBallImageView.hidden == NO) {
|
||||
make.centerX.mas_equalTo(self.bigBallImageView);
|
||||
make.width.mas_lessThanOrEqualTo(self.bigBallImageView).multipliedBy(0.8);
|
||||
} else {
|
||||
make.centerX.mas_equalTo(self.ballImageView);
|
||||
make.width.mas_lessThanOrEqualTo(self.ballImageView).multipliedBy(0.8);
|
||||
}
|
||||
make.top.mas_equalTo(self).offset(kGetScaleWidth(18));
|
||||
make.height.mas_equalTo(kGetScaleWidth(28));
|
||||
}];
|
||||
}
|
||||
|
||||
- (instancetype)initWithFrame:(CGRect)frame {
|
||||
@@ -241,7 +252,7 @@ exitCurrentRoom:(void(^)(void))exit {
|
||||
make.centerX.mas_equalTo(self.ballImageView);
|
||||
make.top.mas_equalTo(self).offset(kGetScaleWidth(18));
|
||||
make.height.mas_equalTo(kGetScaleWidth(28));
|
||||
make.width.mas_lessThanOrEqualTo(self.bigBallImageView).multipliedBy(0.8);
|
||||
make.width.mas_lessThanOrEqualTo(self.ballImageView).multipliedBy(0.8);
|
||||
}];
|
||||
|
||||
UILabel *titleLabel_4 = [UILabel labelInitWithText:YMLocalizedString(@"Combo_5") font:kFontSemibold(14) textColor:[UIColor whiteColor]];
|
||||
|
Reference in New Issue
Block a user