What does @private mean in Objective-C?
|
It's a visibility modifier—it means that instance variables declared as For example:
Also, to clarify, methods are always public in Objective-C. There are ways of "hiding" method declarations, though—see this question for more information. |
||||
|
|
|
As htw said, it's a visibility modifier.
So to answer your question, @private protects ivars from access by an instance of any other class. Note that two instances of MyFirstClass could access all of each other's ivars directly; it is assumed that since the programmer has complete control over this class directly, he will use this ability wisely. |
|||||||||||||||||||
|
|
It important to understand what it means when somebody says that you can't access a Either way, at run time, all bets are off. These Do not rely on ivar visibility modifiers for security! They provide none at all. They are strictly for compile-time enforcement of the class-builder's wishes. |
|||
|
|
protected by Joshua Nozzi Sep 25 '12 at 19:29
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.