I have been suggested to use the Singleton model at:
http://www.galloway.me.uk/tutorials/singleton-classes/
Some of the questions I have are:
where do I declare the singleton?
Do I release it anywhere or does it terminate with the application?
Any tips in terms of the Singletons in apps?
Thanks
Singleton object can be accessed from any where in your application.
You initialize it at the first time get call (via static method). Then the instance will remain in the memory.
You releases it when the application terminated.