Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Last active January 18, 2016 14:16
Show Gist options
  • Save KentarouKanno/d0d3be1f66aee7d88b95 to your computer and use it in GitHub Desktop.
Save KentarouKanno/d0d3be1f66aee7d88b95 to your computer and use it in GitHub Desktop.
Singleton

Singleton

class Singleton {
    static let sharedInstance: Singleton = {
        let instance = Singleton()
        // 初期値設定
        return instance
    }()
}
final class Singleton {
    static let sharedInstance = Singleton()
    private init() {
         
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment