For this issue, you have to calculate the currency judgment and price conversion yourself.
What the api can do is to get the region or language of the current machine, etc., and based on this information you can decide what currency to display.
This information is in NSUserDefaults.
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
for (NSString *key in [[defaults dictionaryRepresentation] keyEnumerator])
{
NSLog(@"%@ = %@",key,[defaults objectForKey:key]);
}
What you may need are the two keys AppleLocale and AppleLanguages for judgment. The first value of AppleLanguages is the current language.
For this issue, you have to calculate the currency judgment and price conversion yourself.
What the api can do is to get the region or language of the current machine, etc., and based on this information you can decide what currency to display.
This information is in NSUserDefaults.
What you may need are the two keys AppleLocale and AppleLanguages for judgment. The first value of AppleLanguages is the current language.