here is my code in swift ,what is the problem,i just want to use computed property with static keyword.
class TypeProperty {
static var Info:String {
set(str) {
TypeProperty.Info = str
}
get {
return "none"
}
}
}
TypeProperty.Info = "I am Info" /* here i get error ,what is problem with it */