Skip to content

Instantly share code, notes, and snippets.

@RameshAran
Created April 8, 2017 11:23
Show Gist options
  • Save RameshAran/1821195e847d6a9118362dbe900c70b5 to your computer and use it in GitHub Desktop.
Save RameshAran/1821195e847d6a9118362dbe900c70b5 to your computer and use it in GitHub Desktop.
import Foundation
class SessionManager {
public static let sharedInstance = SessionManager()
let dataManager: StoreDataManager
private init() {
self.dataManager = StoreDataManager()
}
}
@RameshAran
Copy link
Author

Swift Singleton Example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment