Design Patterns in Swift: Singleton
What is Singleton
Singleton is a pattern that creates a single instance of a type for the entire application, usually in a global scope (with visibility from any place in the code). The idea ...