修复bug

This commit is contained in:
liyuhua
2023-08-04 11:47:43 +08:00
parent dba85043bc
commit 20458f8f31
68 changed files with 266 additions and 191 deletions

View File

@@ -202,7 +202,7 @@
self.avatarImageView.imageUrl = userInfo.avatar;
self.bgImageView.imageUrl = userInfo.avatar;
self.introduceLabel.text = _userInfo.userDesc.length > 0 ? _userInfo.userDesc : YMLocalizedString(@"XPMineSimpleUserInfoHeaderView0");
self.fansLabel.text =[NSString stringWithFormat:@"粉丝%ld", _userInfo.fansNum];
self.fansLabel.text =[NSString stringWithFormat:@"%@%ld",YMLocalizedString(@"XPMineHeadView5"), _userInfo.fansNum];
self.userGiftWall = self.userInfo.userGiftWall;
self.userLuckyBagGiftWall = self.userInfo.userLuckyBagGiftWall;
@@ -433,7 +433,7 @@
- (NSArray<NSString *> *)titles {
if (!_titles) {
_titles = @[@"普通礼物", YMLocalizedString(@"XPMineSimpleUserInfoHeaderView5")];
_titles = @[YMLocalizedString(@"XPWishGiftCreateItemViewController0"), YMLocalizedString(@"XPMineSimpleUserInfoHeaderView5")];
}
return _titles;
}