Is it possible to define properties that are only available to the class they are defined in, and that class\'s subclasses?
Stated another way, is there a way to def
You could use such syntax in subclass implementation.
@interface SuperClass (Internal) @property (retain, nonatomic) NSString *protectedString; @end