I'm developing an app just now that fetches resources from a JSON API.
all of the resources have the same base URL:
http://api.mysite.com/resources.json
http://api.mysite.com/other_resources.json
I want to store the http://api.mysite.com/ string so it's available to all of my Controllers and Models, removing some duplication when writing the resource URLs.
Where's the best place to do this? The -prefix.pch file?
Any advice appreciated