views:

85

answers:

1

Someone said that I could add an private keyword to @property(...) ... really?

+4  A: 

Objective-C only allows private, protected, and public modifiers on instance variables, although you can essentially make a property (or method) private by declaring it in the implementation (.m) file rather than the header (.h file).

mipadi