Today I Learned

hashrocket A Hashrocket project

Static singletons in swift

Today i learned how to make a static singleton class in swift

class SharedManager{
static let sharedInstance = ShareManager()
///properties and methods below 
}
See More #mobile TILs