Skip to content

Instantly share code, notes, and snippets.

@albertodebortoli
Created May 13, 2012 12:32
Show Gist options
  • Save albertodebortoli/2688229 to your computer and use it in GitHub Desktop.
Save albertodebortoli/2688229 to your computer and use it in GitHub Desktop.
check ARC availability
#if __has_feature(objc_arc)
#else
- (void)dealloc
{
[super dealloc];
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment