Guest User

Untitled

a guest
Jan 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. // Define NS_NONATOMIC_IOSONLY here for now if not already defined. This is
  2. // necessary during the transition between iOS 4.3 and iOS 5.0. Lion already
  3. // defines NS_NONATOMIC_IOSONLY but iOS 4.3 does not. Instead it defines
  4. // NS_NONATOMIC_IPHONEONLY; the phone has become the OS!
  5. #if !defined(NS_NONATOMIC_IOSONLY)
  6. #if TARGET_OS_IPHONE
  7. #define NS_NONATOMIC_IOSONLY nonatomic
  8. #else
  9. #define NS_NONATOMIC_IOSONLY
  10. #endif
  11. #endif
Add Comment
Please, Sign In to add comment