I'm building an iOS application. Most of the application requires access to a persistent object. This object is instantiated when the app loads via the Application Delegate.
The problem I have is that numerous View Controllers that need to access this object.
What is the best way and best practice to create global objects that can be access from anywhere in the application?
Examples would be appreciated. Many thanks.