what is singleton class? Why the whole application creates a single instance?
Answer / babu
A singleton class is a special kind of class where only one instance of the class exists for the entire application. (In the case of an iPhone app, the one instance is shared across the entire app.) Some examples in UIKit are [UIApplication sharedApplication] (which returns the sole instance of the application itself), and [NSFileManager defaultManager] (which returns the file manager instance). Singletons can be an easy way to share data and common methods across your entire app.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is nsfetchedresultscontroller?
What is a struct in iOS operating system?
What is the first responder and responder chain?
How to shut off message alerts in ios?
What is difference strong and weak reference ? Explain.
Can I have relationship between entities in separate stores (in case of configurations)?
Whats the difference between frame and bounds?
Whats the difference between NSArray and NSMutableArray?
What is a delegate xcode?
How to deal with sqlite database?
Difference between retain and assign ?
What are the design patterns in ios?