UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

the user’s preferred currency, rather than always using US dollars

Forums > 100 Days of SwiftUI

how I can make the user’s preferred currency, rather than always using US dollars in iExpense app?

2      

Try this out...

Text(item.amount, format: .currency(code: Locale.current.currencyCode ?? "USD"))

This should use the user's default currency or USD if nothing is found.

2      

True, this will change the currency symbol. But the currency formatting (decimal separator, thousands separator, position of the symbol, separation between symbol and number) will retain the current locale, which may not be what is desired. The rules that govern this formatting are complex. Sometimes changing settings on the device (or simulator) will do. In other cases the development language is the determining factor, and this must be set in a configuration file. For more information see https://developer.apple.com/forums/thread/706739

2      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.