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 |