Skip to content

Instantly share code, notes, and snippets.

@drewmccormack
Created May 16, 2014 08:49
Show Gist options
  • Save drewmccormack/6592e48c94b9aaab6678 to your computer and use it in GitHub Desktop.
Save drewmccormack/6592e48c94b9aaab6678 to your computer and use it in GitHub Desktop.
Define availability macros for pre-iOS 7 and OS X 10.8
#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