SwiftSingleton
tl;dr: Use theclass constantapproach if you are using Swift 1.2 or above and thenested structapproach if you need to support earlier versions.
An exploration of the Singleton pattern in Swift. All approaches below support lazy initialization and thread safety.
Issues and pull requests welcome.
Approach A: Class constant
This approach supports lazy initialization because Swift lazily initializes class constants (and variables),and is thread safe by the deFinition oflet
.(上述代表也实现了延迟加载技术)
Class constants were introduced in Swift 1.2. If you need to support an earlier version of Swift,use the nested struct approach below or a global constant.(早期版本支持,几乎不需要)
Approach B: nested struct
Here we are using the static constant of a nested struct as a class constant. This is a workaround for the lack of static class constants in Swift 1.1 and earlier,and still works as a workaround for the lack of static constants and variables in functions.
Approach C: dispatch_once
The Traditional Objective-C approach ported to Swift.
I'm fairly certain there's no advantage over the nested struct approach but I'm including it anyway as I find the differences in Syntax interesting.(使用GCD技术实现的单例模式)