I wanted to create a Swift class to store some data so I wanted to use class variables 'cause I know static variables from Java. So I wrote this code:
class myClass {
class var myVar:Int = 0
}
But this feature isn't yet supported as the warning said then. So I wanted to ask if there's a way to do that in a nice way. I know this is kinda workin' using computed properties but actually that's not what I really want. I would really love when someone helped me :]