Created
June 20, 2011 12:34
-
-
Save hartbit/1035541 to your computer and use it in GitHub Desktop.
Property refinement
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 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