Statement PROTECTED: Foundation
Limits visibility of member variables and methods to subclasses
PROTECTED:
The keyword PROTECTED: determines the visibility attribute for subsequently declared member variables and methods within the class declaration. The member variables and methods which are declared after PROTECTED: are only visible within the source code of the methods of the declared class and its subclasses and can only be used within these methods.
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.