Skip to content

Instantly share code, notes, and snippets.

@jdewind
Created March 25, 2011 19:25
Show Gist options
  • Save jdewind/887446 to your computer and use it in GitHub Desktop.
Save jdewind/887446 to your computer and use it in GitHub Desktop.
@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