NEW: My new book Pro SwiftUI is out now – level up your SwiftUI skills 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?

   

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.

   

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

   

Hacking with Swift is sponsored by Stream

SPONSORED Build a functional Twitter clone using APIs and SwiftUI with Stream's 7-part tutorial series. In just four days, learn how to create your own Twitter using Stream Chat, Algolia, 100ms, Mux, and RevenueCat.

Try now!

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

Reply to this topic…

You need to create an account or log in to reply.

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.