Skip to content

Instantly share code, notes, and snippets.

@kirillyakimovich
Created April 28, 2015 13:28
Show Gist options
  • Save kirillyakimovich/777c35a0915a4f164b4c to your computer and use it in GitHub Desktop.
Save kirillyakimovich/777c35a0915a4f164b4c to your computer and use it in GitHub Desktop.
@interface BaseProperty: NSObject
@property NSString *name;
@end
@implementation BaseProperty
@end
@interface ChildProperty: BaseProperty
@property NSString *nickName;
@end
@implementation ChildProperty
@end
@interface MainOwner: NSObject
@property BaseProperty *property;
@end
@implementation MainOwner
@end
@interface ChildOwner: MainOwner
@property ChildProperty *property;
@end
@implementation ChildOwner
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment