Early versions of our app will only support a limited number of currencies. If a user should try to use our app with an unsupported currencyCode then I'd like to set the currencyCode to one that is supported. I'm getting myself confused bouncing between NSNumberFormatters, currencyCodes, NSLocales, etc...
Currently I test the NSNumberFormatter's currencyCode against a list of supported strings: USD, EUR, etc. If lookup is not successful I set the currencyCode to @"USD" then things seem to work but the numbers format in the local style, (50.000,30 US$) vs ($50,000.35), as one would expect. Is this enough? Should I also be setting and tracking the Locale?
Any good tips or tutorials on currencyCodes and/or working with Locales in Cocoa? How are others handling situations like this?