I want to find out the currency locale on user\'s iphone programmatically. That means, if user is in US Store, the currency locale should be USD, for Australia, it should be
I used these keys to extract currency symbols/codes from locales
NSLocale *theLocale = [NSLocale currentLocale]; NSString *symbol = [theLocale objectForKey:NSLocaleCurrencySymbol]; NSString *code = [theLocale objectForKey:NSLocaleCurrencyCode];