Swift version: 5.6
Singletons are objects that should only ever be created once, then shared everywhere they need to be used. They are common on Apple’s platforms: FileManager
, UserDefaults
, UIApplication
, and UIAccelerometer
are all mostly used through their singleton implementations.
The basic implementation of a Swift singleton looks like this:
class Settings {
static let shared = Settings()
var username: String?
private init() { }
}
Adding a private
initializer is important, because it stops other parts of our code from trying to create a Settings
class instance. However, the class creates its own instance of itself as a static variable, which means the only instance of the Settings
class is the one it created: Settings.shared
.
SPONSORED In-app subscriptions are a pain to implement, hard to test, and full of edge cases. RevenueCat makes it straightforward and reliable so you can get back to building your app. Oh, and it's free if your app makes less than $10k/mo.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 8.0 – learn more in my book Swift Design Patterns
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.