我需要将SKProduct当地价格转换为美元。这意味着,SKProduct给我本地货币。但我需要在每个国家显示美元汇率。
答案 0 :(得分:0)
尝试使用这些库DDUnitConverter和MGCurrencyExchanger或尝试使用此代码
SKProduct *product = [self.products objectAtIndex:indexPath.row];
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[formatter setLocale:product.priceLocale];
currencyString = [formatter stringFromNumber:product.price];`