I know it\'s possible to define public instance variable with @public keyword.
However, Objective-C syntax does not allow accessing other class\' variable.
What features sho
You can access it like using -> (member by pointer) operator like you normally access members of a c-structure (note that you always have a pointer to an object in obj-c):