Created
April 28, 2015 13:28
-
-
Save kirillyakimovich/777c35a0915a4f164b4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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