From e766464b74fb583b98ae1e167ecddbb5ee030dc9 Mon Sep 17 00:00:00 2001 From: Allen Wu Date: Tue, 5 Nov 2013 14:54:24 -0800 Subject: [PATCH] Fixed NSFoundationVersionNumber checking to allow compilation on Xcode 4 --- GKClasses/GKImageCropViewController.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GKClasses/GKImageCropViewController.m b/GKClasses/GKImageCropViewController.m index f88bdf5..242c95a 100644 --- a/GKClasses/GKImageCropViewController.m +++ b/GKClasses/GKImageCropViewController.m @@ -9,6 +9,10 @@ #import "GKImageCropViewController.h" #import "GKImageCropView.h" +#ifndef NSFoundationVersionNumber_iOS_6_1 +#define NSFoundationVersionNumber_iOS_6_1 993.00 +#endif + @interface GKImageCropViewController () @property (nonatomic, strong) GKImageCropView *imageCropView;