Someone said that I could add an private
keyword to @property(...) ... really?
views:
85answers:
1
+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
2010-06-10 14:03:04