-
-
Save Abizern/1354106 to your computer and use it in GitHub Desktop.
ARC macros for weak references
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
#import <Availability.h> | |
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_4_3 | |
#warning "This library uses ARC which is only available in iOS SDK 4.3 and later." | |
#endif | |
#if !defined dct_weak && __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_5_0 | |
#define dct_weak weak | |
#define __dct_weak __weak | |
#define dct_nil(x) | |
#elif !defined dct_weak && __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_4_3 | |
#define dct_weak unsafe_unretained | |
#define __dct_weak __unsafe_unretained | |
#define dct_nil(x) x = nil | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've also just realised that there should be a check for Mac OS version as well. Will have a look at some point :)