Created
May 16, 2014 08:49
-
-
Save drewmccormack/6592e48c94b9aaab6678 to your computer and use it in GitHub Desktop.
Define availability macros for pre-iOS 7 and OS X 10.8
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 <Foundation/Foundation.h> | |
#if TARGET_OS_IPHONE && !defined(__IPHONE_7_0) | |
#define __IPHONE_7_0 70000 | |
#endif | |
#if !TARGET_OS_IPHONE && !defined(__MAC_10_9) | |
#define __MAC_10_9 1090 | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment