Last Updated: September 16, 2018
·
1.944K
· kanshuYokoo

short memo: Objective C variables, Private, Protected, and Public

@private
// Access only from the class in which it is declared.
@protected
// Access from subclasses.
// the default value.
@public
// Access from everywhere