Direct access to auto-synthesized instance variables in subclasses?
问题 For efficiency I want to access the member variable associated with a property in a subclass. If I have a property declared like: @interface Mumbo : NSObject @property (nonatomic) GLKVector3 position; @end In the implementation of Mumbo I can refer to position either as self.position or directly as _position (the default synthesized member variable - I am not using @synthesize). I use the latter for efficiency in some cases to avoid copying structures. However, in subclasses I cannot refer to