Created
March 25, 2011 19:25
-
-
Save jdewind/887446 to your computer and use it in GitHub Desktop.
This file contains 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 SomeClass | |
{ | |
... | |
} | |
// Use 'assign' because a meta class is not subject to the normal retain/release lifecycle. | |
// It will exist until the application is terminated (Class Initialization -> Application Termination) | |
// regardless of the number of objects in the runtime that reference it. | |
@property (nonatomic, assign) id<ExternalUtility> externalUtility | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment