AFNetworking/Example/Prefix.pch
Steven Fisher a8376b477d Update Prefix.pch
Update required SDK version in example .pch.

Not very important fix, but a 3.0 requirement here seems very strange.
2013-09-27 09:32:05 -07:00

21 lines
551 B
Plaintext

#import <Availability.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#ifndef __IPHONE_6_0
#warning "This project uses features only available in iPhone SDK 6.0 and later."
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#endif
#else
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#endif
#endif