fix:修正阿语房间背景价格显示问题

This commit is contained in:
eggmanQQQ
2024-11-15 16:33:27 +08:00
parent a1306b32b8
commit cb1172eb8c
6 changed files with 27 additions and 26 deletions

View File

@@ -23,10 +23,10 @@
}
- (NSString *)pricePerDays {
return [NSString stringWithFormat:@"%@/%@%@",
@(self.goldPrice),
@(self.buyHour/24),
YMLocalizedString(@"1.0.18_8")];
NSString *content =[NSString stringWithFormat:@"%@/%@",
@(self.goldPrice),
@(self.buyHour/24)];
return [NSString stringWithFormat:YMLocalizedString(@"1.0.18_8"), content];
}
- (BOOL)isAlreadyPay {