修复bug

This commit is contained in:
liyuhua
2024-06-04 19:39:40 +08:00
committed by eggmanQQQ
parent b91a37f63c
commit 745a4e352a
8 changed files with 12 additions and 9 deletions

View File

@@ -191,7 +191,7 @@ NSString * const HadAgreePrivacy = @"HadAgreePrivacy";
make.width.mas_offset(kGetScaleWidth(162));
make.height.mas_equalTo(kGetScaleWidth(32));
make.centerX.equalTo(self.view);
make.top.equalTo(self.bgImageView.mas_bottom).mas_offset(kGetScaleWidth(10));
make.top.equalTo(self.bgImageView.mas_bottom).mas_offset(kGetScaleWidth(-15));
}];
@@ -732,7 +732,7 @@ NSString * const HadAgreePrivacy = @"HadAgreePrivacy";
if(!_bgImageView){
_bgImageView = [[UIImageView alloc]init];
_bgImageView.image = kImage(@"pi_app_login_new_bg");
_bgImageView.contentMode = 2;
_bgImageView.contentMode = UIViewContentModeScaleAspectFit;
}
return _bgImageView;
}