In Objective-C, we have:
+(void)load
{
}
What is the equivalent of this in Swift 4?
In Swift 1, we have:
override class func load() {
}
...but it's not available in Swift 4.2.
In Objective-C, we have:
+(void)load
{
}
What is the equivalent of this in Swift 4?
In Swift 1, we have:
override class func load() {
}
...but it's not available in Swift 4.2.