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