AFURLConnectionOperation.m should #import UIKit, instead of relying on the prefix including it.

This commit is contained in:
Steven Fisher 2012-05-24 16:24:53 -07:00
parent 09a8b1dbcf
commit 985d8cfd51

View file

@ -21,6 +21,9 @@
// THE SOFTWARE. // THE SOFTWARE.
#import "AFURLConnectionOperation.h" #import "AFURLConnectionOperation.h"
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <UIKit/UIKit.h>
#endif
typedef enum { typedef enum {
AFHTTPOperationPausedState = -1, AFHTTPOperationPausedState = -1,