I found this code and I was dumbfounded:
@interface MyNode : NSObject {
Node *node;
}
@property(nonatomic,strong) Node *node;
@end
What is the behaviour of this code?
I think that property declaration of "node" ovveride an shadow previous declaration, isn't it?