Last active
August 29, 2015 14:03
-
-
Save avh4/21fc0bbf88f6f0e8427d to your computer and use it in GitHub Desktop.
ARC release/retain/retainCount
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
// 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