mirror of
https://github.com/wnagrodzki/DragGestureRecognizer_ObjC.git
synced 2025-04-04 19:42:20 +02:00
Adds initial Xcode project.
This commit is contained in:
parent
4e527f6334
commit
235a5efa64
15 changed files with 774 additions and 0 deletions
460
DragGestureRecognizer.xcodeproj/project.pbxproj
Normal file
460
DragGestureRecognizer.xcodeproj/project.pbxproj
Normal file
|
@ -0,0 +1,460 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
2EBB3D9B18EB638C007A7E63 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EBB3D9A18EB638C007A7E63 /* Foundation.framework */; };
|
||||
2EBB3D9D18EB638C007A7E63 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EBB3D9C18EB638C007A7E63 /* CoreGraphics.framework */; };
|
||||
2EBB3D9F18EB638C007A7E63 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EBB3D9E18EB638C007A7E63 /* UIKit.framework */; };
|
||||
2EBB3DA518EB638C007A7E63 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2EBB3DA318EB638C007A7E63 /* InfoPlist.strings */; };
|
||||
2EBB3DA718EB638C007A7E63 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EBB3DA618EB638C007A7E63 /* main.m */; };
|
||||
2EBB3DAB18EB638C007A7E63 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EBB3DAA18EB638C007A7E63 /* AppDelegate.m */; };
|
||||
2EBB3DAD18EB638C007A7E63 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2EBB3DAC18EB638C007A7E63 /* Images.xcassets */; };
|
||||
2EBB3DB418EB638C007A7E63 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EBB3DB318EB638C007A7E63 /* XCTest.framework */; };
|
||||
2EBB3DB518EB638C007A7E63 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EBB3D9A18EB638C007A7E63 /* Foundation.framework */; };
|
||||
2EBB3DB618EB638C007A7E63 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EBB3D9E18EB638C007A7E63 /* UIKit.framework */; };
|
||||
2EBB3DBE18EB638C007A7E63 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2EBB3DBC18EB638C007A7E63 /* InfoPlist.strings */; };
|
||||
2EBB3DC018EB638C007A7E63 /* DragGestureRecognizerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EBB3DBF18EB638C007A7E63 /* DragGestureRecognizerTests.m */; };
|
||||
2EBB3DCB18EB63E2007A7E63 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EBB3DCA18EB63E2007A7E63 /* MainViewController.m */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
2EBB3DB718EB638C007A7E63 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2EBB3D8F18EB638C007A7E63 /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 2EBB3D9618EB638C007A7E63;
|
||||
remoteInfo = DragGestureRecognizer;
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
2EBB3D9718EB638C007A7E63 /* DragGestureRecognizer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DragGestureRecognizer.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
2EBB3D9A18EB638C007A7E63 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
||||
2EBB3D9C18EB638C007A7E63 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
||||
2EBB3D9E18EB638C007A7E63 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
||||
2EBB3DA218EB638C007A7E63 /* DragGestureRecognizer-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DragGestureRecognizer-Info.plist"; sourceTree = "<group>"; };
|
||||
2EBB3DA418EB638C007A7E63 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||
2EBB3DA618EB638C007A7E63 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
||||
2EBB3DA818EB638C007A7E63 /* DragGestureRecognizer-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DragGestureRecognizer-Prefix.pch"; sourceTree = "<group>"; };
|
||||
2EBB3DA918EB638C007A7E63 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
||||
2EBB3DAA18EB638C007A7E63 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
||||
2EBB3DAC18EB638C007A7E63 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
||||
2EBB3DB218EB638C007A7E63 /* DragGestureRecognizerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DragGestureRecognizerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
2EBB3DB318EB638C007A7E63 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
|
||||
2EBB3DBB18EB638C007A7E63 /* DragGestureRecognizerTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DragGestureRecognizerTests-Info.plist"; sourceTree = "<group>"; };
|
||||
2EBB3DBD18EB638C007A7E63 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||
2EBB3DBF18EB638C007A7E63 /* DragGestureRecognizerTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DragGestureRecognizerTests.m; sourceTree = "<group>"; };
|
||||
2EBB3DC918EB63E2007A7E63 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
|
||||
2EBB3DCA18EB63E2007A7E63 /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
2EBB3D9418EB638C007A7E63 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2EBB3D9D18EB638C007A7E63 /* CoreGraphics.framework in Frameworks */,
|
||||
2EBB3D9F18EB638C007A7E63 /* UIKit.framework in Frameworks */,
|
||||
2EBB3D9B18EB638C007A7E63 /* Foundation.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
2EBB3DAF18EB638C007A7E63 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2EBB3DB418EB638C007A7E63 /* XCTest.framework in Frameworks */,
|
||||
2EBB3DB618EB638C007A7E63 /* UIKit.framework in Frameworks */,
|
||||
2EBB3DB518EB638C007A7E63 /* Foundation.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
2EBB3D8E18EB638C007A7E63 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2EBB3DA018EB638C007A7E63 /* DragGestureRecognizer */,
|
||||
2EBB3DB918EB638C007A7E63 /* DragGestureRecognizerTests */,
|
||||
2EBB3D9918EB638C007A7E63 /* Frameworks */,
|
||||
2EBB3D9818EB638C007A7E63 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2EBB3D9818EB638C007A7E63 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2EBB3D9718EB638C007A7E63 /* DragGestureRecognizer.app */,
|
||||
2EBB3DB218EB638C007A7E63 /* DragGestureRecognizerTests.xctest */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2EBB3D9918EB638C007A7E63 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2EBB3D9A18EB638C007A7E63 /* Foundation.framework */,
|
||||
2EBB3D9C18EB638C007A7E63 /* CoreGraphics.framework */,
|
||||
2EBB3D9E18EB638C007A7E63 /* UIKit.framework */,
|
||||
2EBB3DB318EB638C007A7E63 /* XCTest.framework */,
|
||||
);
|
||||
name = Frameworks;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2EBB3DA018EB638C007A7E63 /* DragGestureRecognizer */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2EBB3DA918EB638C007A7E63 /* AppDelegate.h */,
|
||||
2EBB3DAA18EB638C007A7E63 /* AppDelegate.m */,
|
||||
2EBB3DAC18EB638C007A7E63 /* Images.xcassets */,
|
||||
2EBB3DA118EB638C007A7E63 /* Supporting Files */,
|
||||
2EBB3DC918EB63E2007A7E63 /* MainViewController.h */,
|
||||
2EBB3DCA18EB63E2007A7E63 /* MainViewController.m */,
|
||||
);
|
||||
path = DragGestureRecognizer;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2EBB3DA118EB638C007A7E63 /* Supporting Files */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2EBB3DA218EB638C007A7E63 /* DragGestureRecognizer-Info.plist */,
|
||||
2EBB3DA318EB638C007A7E63 /* InfoPlist.strings */,
|
||||
2EBB3DA618EB638C007A7E63 /* main.m */,
|
||||
2EBB3DA818EB638C007A7E63 /* DragGestureRecognizer-Prefix.pch */,
|
||||
);
|
||||
name = "Supporting Files";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2EBB3DB918EB638C007A7E63 /* DragGestureRecognizerTests */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2EBB3DBF18EB638C007A7E63 /* DragGestureRecognizerTests.m */,
|
||||
2EBB3DBA18EB638C007A7E63 /* Supporting Files */,
|
||||
);
|
||||
path = DragGestureRecognizerTests;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2EBB3DBA18EB638C007A7E63 /* Supporting Files */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2EBB3DBB18EB638C007A7E63 /* DragGestureRecognizerTests-Info.plist */,
|
||||
2EBB3DBC18EB638C007A7E63 /* InfoPlist.strings */,
|
||||
);
|
||||
name = "Supporting Files";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
2EBB3D9618EB638C007A7E63 /* DragGestureRecognizer */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 2EBB3DC318EB638C007A7E63 /* Build configuration list for PBXNativeTarget "DragGestureRecognizer" */;
|
||||
buildPhases = (
|
||||
2EBB3D9318EB638C007A7E63 /* Sources */,
|
||||
2EBB3D9418EB638C007A7E63 /* Frameworks */,
|
||||
2EBB3D9518EB638C007A7E63 /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = DragGestureRecognizer;
|
||||
productName = DragGestureRecognizer;
|
||||
productReference = 2EBB3D9718EB638C007A7E63 /* DragGestureRecognizer.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
2EBB3DB118EB638C007A7E63 /* DragGestureRecognizerTests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 2EBB3DC618EB638C007A7E63 /* Build configuration list for PBXNativeTarget "DragGestureRecognizerTests" */;
|
||||
buildPhases = (
|
||||
2EBB3DAE18EB638C007A7E63 /* Sources */,
|
||||
2EBB3DAF18EB638C007A7E63 /* Frameworks */,
|
||||
2EBB3DB018EB638C007A7E63 /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
2EBB3DB818EB638C007A7E63 /* PBXTargetDependency */,
|
||||
);
|
||||
name = DragGestureRecognizerTests;
|
||||
productName = DragGestureRecognizerTests;
|
||||
productReference = 2EBB3DB218EB638C007A7E63 /* DragGestureRecognizerTests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.unit-test";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
2EBB3D8F18EB638C007A7E63 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0510;
|
||||
ORGANIZATIONNAME = "Wojciech Nagrodzki";
|
||||
TargetAttributes = {
|
||||
2EBB3DB118EB638C007A7E63 = {
|
||||
TestTargetID = 2EBB3D9618EB638C007A7E63;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 2EBB3D9218EB638C007A7E63 /* Build configuration list for PBXProject "DragGestureRecognizer" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 2EBB3D8E18EB638C007A7E63;
|
||||
productRefGroup = 2EBB3D9818EB638C007A7E63 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
2EBB3D9618EB638C007A7E63 /* DragGestureRecognizer */,
|
||||
2EBB3DB118EB638C007A7E63 /* DragGestureRecognizerTests */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
2EBB3D9518EB638C007A7E63 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2EBB3DA518EB638C007A7E63 /* InfoPlist.strings in Resources */,
|
||||
2EBB3DAD18EB638C007A7E63 /* Images.xcassets in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
2EBB3DB018EB638C007A7E63 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2EBB3DBE18EB638C007A7E63 /* InfoPlist.strings in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
2EBB3D9318EB638C007A7E63 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2EBB3DAB18EB638C007A7E63 /* AppDelegate.m in Sources */,
|
||||
2EBB3DCB18EB63E2007A7E63 /* MainViewController.m in Sources */,
|
||||
2EBB3DA718EB638C007A7E63 /* main.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
2EBB3DAE18EB638C007A7E63 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2EBB3DC018EB638C007A7E63 /* DragGestureRecognizerTests.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
2EBB3DB818EB638C007A7E63 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 2EBB3D9618EB638C007A7E63 /* DragGestureRecognizer */;
|
||||
targetProxy = 2EBB3DB718EB638C007A7E63 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
2EBB3DA318EB638C007A7E63 /* InfoPlist.strings */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
2EBB3DA418EB638C007A7E63 /* en */,
|
||||
);
|
||||
name = InfoPlist.strings;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2EBB3DBC18EB638C007A7E63 /* InfoPlist.strings */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
2EBB3DBD18EB638C007A7E63 /* en */,
|
||||
);
|
||||
name = InfoPlist.strings;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
2EBB3DC118EB638C007A7E63 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = iphoneos;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
2EBB3DC218EB638C007A7E63 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
COPY_PHASE_STRIP = YES;
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
|
||||
SDKROOT = iphoneos;
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
2EBB3DC418EB638C007A7E63 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = "DragGestureRecognizer/DragGestureRecognizer-Prefix.pch";
|
||||
INFOPLIST_FILE = "DragGestureRecognizer/DragGestureRecognizer-Info.plist";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
WRAPPER_EXTENSION = app;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
2EBB3DC518EB638C007A7E63 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = "DragGestureRecognizer/DragGestureRecognizer-Prefix.pch";
|
||||
INFOPLIST_FILE = "DragGestureRecognizer/DragGestureRecognizer-Info.plist";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
WRAPPER_EXTENSION = app;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
2EBB3DC718EB638C007A7E63 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/DragGestureRecognizer.app/DragGestureRecognizer";
|
||||
FRAMEWORK_SEARCH_PATHS = (
|
||||
"$(SDKROOT)/Developer/Library/Frameworks",
|
||||
"$(inherited)",
|
||||
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
||||
);
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = "DragGestureRecognizer/DragGestureRecognizer-Prefix.pch";
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
INFOPLIST_FILE = "DragGestureRecognizerTests/DragGestureRecognizerTests-Info.plist";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
TEST_HOST = "$(BUNDLE_LOADER)";
|
||||
WRAPPER_EXTENSION = xctest;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
2EBB3DC818EB638C007A7E63 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/DragGestureRecognizer.app/DragGestureRecognizer";
|
||||
FRAMEWORK_SEARCH_PATHS = (
|
||||
"$(SDKROOT)/Developer/Library/Frameworks",
|
||||
"$(inherited)",
|
||||
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
||||
);
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = "DragGestureRecognizer/DragGestureRecognizer-Prefix.pch";
|
||||
INFOPLIST_FILE = "DragGestureRecognizerTests/DragGestureRecognizerTests-Info.plist";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
TEST_HOST = "$(BUNDLE_LOADER)";
|
||||
WRAPPER_EXTENSION = xctest;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
2EBB3D9218EB638C007A7E63 /* Build configuration list for PBXProject "DragGestureRecognizer" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2EBB3DC118EB638C007A7E63 /* Debug */,
|
||||
2EBB3DC218EB638C007A7E63 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
2EBB3DC318EB638C007A7E63 /* Build configuration list for PBXNativeTarget "DragGestureRecognizer" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2EBB3DC418EB638C007A7E63 /* Debug */,
|
||||
2EBB3DC518EB638C007A7E63 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
2EBB3DC618EB638C007A7E63 /* Build configuration list for PBXNativeTarget "DragGestureRecognizerTests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2EBB3DC718EB638C007A7E63 /* Debug */,
|
||||
2EBB3DC818EB638C007A7E63 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 2EBB3D8F18EB638C007A7E63 /* Project object */;
|
||||
}
|
7
DragGestureRecognizer.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
7
DragGestureRecognizer.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:DragGestureRecognizer.xcodeproj">
|
||||
</FileRef>
|
||||
</Workspace>
|
15
DragGestureRecognizer/AppDelegate.h
Normal file
15
DragGestureRecognizer/AppDelegate.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
//
|
||||
// AppDelegate.h
|
||||
// DragGestureRecognizer
|
||||
//
|
||||
// Created by Wojciech Nagrodzki on 01/04/14.
|
||||
// Copyright (c) 2014 Wojciech Nagrodzki. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
||||
|
||||
@property (strong, nonatomic) UIWindow *window;
|
||||
|
||||
@end
|
52
DragGestureRecognizer/AppDelegate.m
Normal file
52
DragGestureRecognizer/AppDelegate.m
Normal file
|
@ -0,0 +1,52 @@
|
|||
//
|
||||
// AppDelegate.m
|
||||
// DragGestureRecognizer
|
||||
//
|
||||
// Created by Wojciech Nagrodzki on 01/04/14.
|
||||
// Copyright (c) 2014 Wojciech Nagrodzki. All rights reserved.
|
||||
//
|
||||
|
||||
#import "AppDelegate.h"
|
||||
#import "MainViewController.h"
|
||||
|
||||
|
||||
@implementation AppDelegate
|
||||
|
||||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
||||
{
|
||||
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
|
||||
// Override point for customization after application launch.
|
||||
self.window.backgroundColor = [UIColor whiteColor];
|
||||
self.window.rootViewController = [[MainViewController alloc] init];
|
||||
[self.window makeKeyAndVisible];
|
||||
return YES;
|
||||
}
|
||||
|
||||
- (void)applicationWillResignActive:(UIApplication *)application
|
||||
{
|
||||
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
|
||||
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
|
||||
}
|
||||
|
||||
- (void)applicationDidEnterBackground:(UIApplication *)application
|
||||
{
|
||||
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
|
||||
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
|
||||
}
|
||||
|
||||
- (void)applicationWillEnterForeground:(UIApplication *)application
|
||||
{
|
||||
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
|
||||
}
|
||||
|
||||
- (void)applicationDidBecomeActive:(UIApplication *)application
|
||||
{
|
||||
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
|
||||
}
|
||||
|
||||
- (void)applicationWillTerminate:(UIApplication *)application
|
||||
{
|
||||
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
|
||||
}
|
||||
|
||||
@end
|
38
DragGestureRecognizer/DragGestureRecognizer-Info.plist
Normal file
38
DragGestureRecognizer/DragGestureRecognizer-Info.plist
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>${PRODUCT_NAME}</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.wojciechnagrodzki.${PRODUCT_NAME:rfc1034identifier}</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>${PRODUCT_NAME}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>armv7</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
16
DragGestureRecognizer/DragGestureRecognizer-Prefix.pch
Normal file
16
DragGestureRecognizer/DragGestureRecognizer-Prefix.pch
Normal file
|
@ -0,0 +1,16 @@
|
|||
//
|
||||
// Prefix header
|
||||
//
|
||||
// The contents of this file are implicitly included at the beginning of every source file.
|
||||
//
|
||||
|
||||
#import <Availability.h>
|
||||
|
||||
#ifndef __IPHONE_3_0
|
||||
#warning "This project uses features only available in iOS SDK 3.0 and later."
|
||||
#endif
|
||||
|
||||
#ifdef __OBJC__
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <Foundation/Foundation.h>
|
||||
#endif
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "29x29",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "40x40",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"idiom" : "iphone",
|
||||
"size" : "60x60",
|
||||
"scale" : "2x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"orientation" : "portrait",
|
||||
"idiom" : "iphone",
|
||||
"extent" : "full-screen",
|
||||
"minimum-system-version" : "7.0",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"orientation" : "portrait",
|
||||
"idiom" : "iphone",
|
||||
"subtype" : "retina4",
|
||||
"extent" : "full-screen",
|
||||
"minimum-system-version" : "7.0",
|
||||
"scale" : "2x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
13
DragGestureRecognizer/MainViewController.h
Normal file
13
DragGestureRecognizer/MainViewController.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
//
|
||||
// MainViewController.h
|
||||
// DragGestureRecognizer
|
||||
//
|
||||
// Created by Wojciech Nagrodzki on 01/04/14.
|
||||
// Copyright (c) 2014 Wojciech Nagrodzki. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface MainViewController : UIViewController
|
||||
|
||||
@end
|
49
DragGestureRecognizer/MainViewController.m
Normal file
49
DragGestureRecognizer/MainViewController.m
Normal file
|
@ -0,0 +1,49 @@
|
|||
//
|
||||
// MainViewController.m
|
||||
// DragGestureRecognizer
|
||||
//
|
||||
// Created by Wojciech Nagrodzki on 01/04/14.
|
||||
// Copyright (c) 2014 Wojciech Nagrodzki. All rights reserved.
|
||||
//
|
||||
|
||||
#import "MainViewController.h"
|
||||
|
||||
@interface MainViewController ()
|
||||
|
||||
@end
|
||||
|
||||
@implementation MainViewController
|
||||
|
||||
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
||||
{
|
||||
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
||||
if (self) {
|
||||
// Custom initialization
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
- (void)viewDidLoad
|
||||
{
|
||||
[super viewDidLoad];
|
||||
// Do any additional setup after loading the view.
|
||||
}
|
||||
|
||||
- (void)didReceiveMemoryWarning
|
||||
{
|
||||
[super didReceiveMemoryWarning];
|
||||
// Dispose of any resources that can be recreated.
|
||||
}
|
||||
|
||||
/*
|
||||
#pragma mark - Navigation
|
||||
|
||||
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
||||
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
|
||||
{
|
||||
// Get the new view controller using [segue destinationViewController].
|
||||
// Pass the selected object to the new view controller.
|
||||
}
|
||||
*/
|
||||
|
||||
@end
|
2
DragGestureRecognizer/en.lproj/InfoPlist.strings
Normal file
2
DragGestureRecognizer/en.lproj/InfoPlist.strings
Normal file
|
@ -0,0 +1,2 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
18
DragGestureRecognizer/main.m
Normal file
18
DragGestureRecognizer/main.m
Normal file
|
@ -0,0 +1,18 @@
|
|||
//
|
||||
// main.m
|
||||
// DragGestureRecognizer
|
||||
//
|
||||
// Created by Wojciech Nagrodzki on 01/04/14.
|
||||
// Copyright (c) 2014 Wojciech Nagrodzki. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
#import "AppDelegate.h"
|
||||
|
||||
int main(int argc, char * argv[])
|
||||
{
|
||||
@autoreleasepool {
|
||||
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.wojciechnagrodzki.${PRODUCT_NAME:rfc1034identifier}</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
</dict>
|
||||
</plist>
|
34
DragGestureRecognizerTests/DragGestureRecognizerTests.m
Normal file
34
DragGestureRecognizerTests/DragGestureRecognizerTests.m
Normal file
|
@ -0,0 +1,34 @@
|
|||
//
|
||||
// DragGestureRecognizerTests.m
|
||||
// DragGestureRecognizerTests
|
||||
//
|
||||
// Created by Wojciech Nagrodzki on 01/04/14.
|
||||
// Copyright (c) 2014 Wojciech Nagrodzki. All rights reserved.
|
||||
//
|
||||
|
||||
#import <XCTest/XCTest.h>
|
||||
|
||||
@interface DragGestureRecognizerTests : XCTestCase
|
||||
|
||||
@end
|
||||
|
||||
@implementation DragGestureRecognizerTests
|
||||
|
||||
- (void)setUp
|
||||
{
|
||||
[super setUp];
|
||||
// Put setup code here. This method is called before the invocation of each test method in the class.
|
||||
}
|
||||
|
||||
- (void)tearDown
|
||||
{
|
||||
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
||||
[super tearDown];
|
||||
}
|
||||
|
||||
- (void)testExample
|
||||
{
|
||||
XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
|
||||
}
|
||||
|
||||
@end
|
2
DragGestureRecognizerTests/en.lproj/InfoPlist.strings
Normal file
2
DragGestureRecognizerTests/en.lproj/InfoPlist.strings
Normal file
|
@ -0,0 +1,2 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
Loading…
Add table
Reference in a new issue