I want to declare static-class variables in objective-c class and want to use them directly using class name like
E.g
having a class named "Myclassname" and variable "Var"
and want access this variable like this....
Myclassname.Var=@"hi";
I dont want to use getters and setters.
Any help please?