If im declaring a class with property for example:
@property float radius, diameter;
So any object that will be created in this class or inherits from it, will have its own instance of radius
and diameter
right?
And this is also mean that they have their own setter and getter too right?
What i'm trying to fully understand is how do I deal with variable access in 2 ways:
1.When I want to make sure the user is not messing with the original value.
2.When I want to limit the users for instance variables he can get access and ones that he can not.
tnx