What is the best way to use global macros in Swift (If this is what is called, english is not my mother tongue sorry). I am looking for a way to have all the macros/keys in on place, maybe a class.
I used to put all my app keys in the Precompiled Header file (.phc), but like I saw in another post this is probably not the best practice:
Why .pch file not available in swift?
For example if I would like to have a bunch of constant keys that the values are just Int, what would you recommend to use in Swift?
Thanks in advance!