本文介绍了如何获得美元的SKProduct本地价格?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要将SKProduct本地价格转换为美元.就是说,SKProduct给我当地货币.但是我需要显示每个国家的美元汇率.
I need to convert SKProduct local price to US Dollar. That means, SKProduct give me local based currency. But i need to show US Dollar rate in every country.
推荐答案
尝试这些库 DDUnitConverter 和 MGCurrencyExchanger 或尝试使用此代码
Try these libraries DDUnitConverter and MGCurrencyExchanger or try this code
SKProduct *product = [self.products objectAtIndex:indexPath.row];
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[formatter setLocale:product.priceLocale];
currencyString = [formatter stringFromNumber:product.price];`
这篇关于如何获得美元的SKProduct本地价格?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!