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 
}Today i learned how to make a static singleton class in swift
class SharedManager{
static let sharedInstance = ShareManager()
///properties and methods below 
}