In my project, I have a requirement to create a separate file for all the constants that I use in separate classes in one project.
I saw a few examples, but they talk about creating in the .h file, and again they implement them in the .m files. But I only need a ".h'file" to create all the constants, and I have to use all these constants by importing this ".h" file into every class of my project.
Can anyone advise how to solve this ... thanks in advance
source
share