What's the best practice for the use of some static info like:
- Server base url
- Some path file
- ...
I think that we can found some different solutions for this:
It's possible to add these informations in plist file;
It's possible to add some #define in file ..Prefix.pch of our iOS app;
It's possible to create a file constant.h where we can add our #define(s) and add the #import "constant.h" into every file where you need to use some of these information or add this import directive into the same Prefix.pch file
exist some best practices for this? What is the best of these?