Prefix.pch 580 B

123456789101112131415161718192021
  1. #import <Availability.h>
  2. #if __IPHONE_OS_VERSION_MIN_REQUIRED
  3. #ifndef __IPHONE_6_0
  4. #warning "This project uses features only available in iPhone SDK 6.0 and later."
  5. #endif
  6. #ifdef __OBJC__
  7. #import <UIKit/UIKit.h>
  8. #import <Foundation/Foundation.h>
  9. #import <SystemConfiguration/SystemConfiguration.h>
  10. #import <MobileCoreServices/MobileCoreServices.h>
  11. #endif
  12. #else
  13. #ifdef __OBJC__
  14. #import <Cocoa/Cocoa.h>
  15. #import <SystemConfiguration/SystemConfiguration.h>
  16. #import <AssertMacros.h>
  17. #import <CoreServices/CoreServices.h>
  18. #endif
  19. #endif