I am new to swift and am trying to write an application - calculator. Maybe my question may seem silly, but still
When creating a number with a dot, I want the line to display a number with "," (something like 3,14 ), but swift (using the Double type) by default displays the number as 3.14 .
Can this be changed? Is it necessary to resort to NumberFormatter() and if so, how to use it correctly?
Thank you in advance