What is the most elegant way to define different values, for constants in my code base, based on the environment in Obj-C
e.g.
BASE_URL = http://localhost_ in development environment
BASE_URL = http://myproddomainname in prod/release environment
What is the most elegant way to define different values, for constants in my code base, based on the environment in Obj-C
e.g.
BASE_URL = http://localhost_ in development environment
BASE_URL = http://myproddomainname in prod/release environment