From 985d8cfd51f445621e0051740a7da269c44da4a6 Mon Sep 17 00:00:00 2001 From: Steven Fisher Date: Thu, 24 May 2012 16:24:53 -0700 Subject: [PATCH] AFURLConnectionOperation.m should #import UIKit, instead of relying on the prefix including it. --- AFNetworking/AFURLConnectionOperation.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AFNetworking/AFURLConnectionOperation.m b/AFNetworking/AFURLConnectionOperation.m index ed0d42d..34f5fc6 100644 --- a/AFNetworking/AFURLConnectionOperation.m +++ b/AFNetworking/AFURLConnectionOperation.m @@ -21,6 +21,9 @@ // THE SOFTWARE. #import "AFURLConnectionOperation.h" +#if __IPHONE_OS_VERSION_MIN_REQUIRED +#import +#endif typedef enum { AFHTTPOperationPausedState = -1,