Skip to content

Instantly share code, notes, and snippets.

@hartbit
Created June 20, 2011 12:34
Show Gist options
  • Select an option

  • Save hartbit/1035541 to your computer and use it in GitHub Desktop.

Select an option

Save hartbit/1035541 to your computer and use it in GitHub Desktop.
Property refinement
@interface Superclass : NSObject
@property (strong) id test;
@end
@implementation Superclass
@synthesize test;
@end
@interface Subclass : Superclass
@property (strong) UIView* test;
@end
@implementation Subclass
@synthesize test;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment