Skip to content

Instantly share code, notes, and snippets.

@avh4
Last active August 29, 2015 14:03
Show Gist options
  • Save avh4/21fc0bbf88f6f0e8427d to your computer and use it in GitHub Desktop.
Save avh4/21fc0bbf88f6f0e8427d to your computer and use it in GitHub Desktop.
ARC release/retain/retainCount
// You shouldn't normally want these, but if you are debugging or working on dark magic,
// here is how you can call retain/release/retainCount in ARC
// From http://stackoverflow.com/a/15707096
#define ARCRetain(...) { void *retainedThing = (__bridge_retained void *)__VA_ARGS__; retainedThing = retainedThing; }
#define ARCRelease(...) { void *retainedThing = (__bridge void *) __VA_ARGS__; id unretainedThing = (__bridge_transfer id)retainedThing; unretainedThing = nil; }
// From http://stackoverflow.com/a/8963645
#define ARCRetainCount(obj) CFGetRetainCount((__bridge CFTypeRef)NSApp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment