GO FURTHER, FASTER: Try the Swift Career Accelerator today! >>

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      

Hacking with Swift is sponsored by Essential Developer.

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until February 9th.

Click to save your free spot now

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.