Skip to content

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Ng authored and Simon Ng committed Dec 9, 2015
0 parents commit c90bd77
Show file tree
Hide file tree
Showing 16 changed files with 944 additions and 0 deletions.
290 changes: 290 additions & 0 deletions ConcurrencyDemo.xcodeproj/project.pbxproj
@@ -0,0 +1,290 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
DA0283911BF90DA900AA4DAC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA0283901BF90DA900AA4DAC /* AppDelegate.swift */; };
DA0283931BF90DA900AA4DAC /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA0283921BF90DA900AA4DAC /* ViewController.swift */; };
DA0283961BF90DA900AA4DAC /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DA0283941BF90DA900AA4DAC /* Main.storyboard */; };
DA0283981BF90DA900AA4DAC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DA0283971BF90DA900AA4DAC /* Assets.xcassets */; };
DA02839B1BF90DA900AA4DAC /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DA0283991BF90DA900AA4DAC /* LaunchScreen.storyboard */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
DA02838D1BF90DA900AA4DAC /* ConcurrencyDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ConcurrencyDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
DA0283901BF90DA900AA4DAC /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
DA0283921BF90DA900AA4DAC /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
DA0283951BF90DA900AA4DAC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
DA0283971BF90DA900AA4DAC /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
DA02839A1BF90DA900AA4DAC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
DA02839C1BF90DA900AA4DAC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
DA02838A1BF90DA900AA4DAC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
DA0283841BF90DA900AA4DAC = {
isa = PBXGroup;
children = (
DA02838F1BF90DA900AA4DAC /* ConcurrencyDemo */,
DA02838E1BF90DA900AA4DAC /* Products */,
);
sourceTree = "<group>";
};
DA02838E1BF90DA900AA4DAC /* Products */ = {
isa = PBXGroup;
children = (
DA02838D1BF90DA900AA4DAC /* ConcurrencyDemo.app */,
);
name = Products;
sourceTree = "<group>";
};
DA02838F1BF90DA900AA4DAC /* ConcurrencyDemo */ = {
isa = PBXGroup;
children = (
DA0283901BF90DA900AA4DAC /* AppDelegate.swift */,
DA0283921BF90DA900AA4DAC /* ViewController.swift */,
DA0283941BF90DA900AA4DAC /* Main.storyboard */,
DA0283971BF90DA900AA4DAC /* Assets.xcassets */,
DA0283991BF90DA900AA4DAC /* LaunchScreen.storyboard */,
DA02839C1BF90DA900AA4DAC /* Info.plist */,
);
path = ConcurrencyDemo;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
DA02838C1BF90DA900AA4DAC /* ConcurrencyDemo */ = {
isa = PBXNativeTarget;
buildConfigurationList = DA02839F1BF90DA900AA4DAC /* Build configuration list for PBXNativeTarget "ConcurrencyDemo" */;
buildPhases = (
DA0283891BF90DA900AA4DAC /* Sources */,
DA02838A1BF90DA900AA4DAC /* Frameworks */,
DA02838B1BF90DA900AA4DAC /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ConcurrencyDemo;
productName = ConcurrencyDemo;
productReference = DA02838D1BF90DA900AA4DAC /* ConcurrencyDemo.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
DA0283851BF90DA900AA4DAC /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0700;
ORGANIZATIONNAME = "Hossam Ghareeb";
TargetAttributes = {
DA02838C1BF90DA900AA4DAC = {
CreatedOnToolsVersion = 7.0;
};
};
};
buildConfigurationList = DA0283881BF90DA900AA4DAC /* Build configuration list for PBXProject "ConcurrencyDemo" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = DA0283841BF90DA900AA4DAC;
productRefGroup = DA02838E1BF90DA900AA4DAC /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
DA02838C1BF90DA900AA4DAC /* ConcurrencyDemo */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
DA02838B1BF90DA900AA4DAC /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA02839B1BF90DA900AA4DAC /* LaunchScreen.storyboard in Resources */,
DA0283981BF90DA900AA4DAC /* Assets.xcassets in Resources */,
DA0283961BF90DA900AA4DAC /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
DA0283891BF90DA900AA4DAC /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA0283931BF90DA900AA4DAC /* ViewController.swift in Sources */,
DA0283911BF90DA900AA4DAC /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
DA0283941BF90DA900AA4DAC /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
DA0283951BF90DA900AA4DAC /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
DA0283991BF90DA900AA4DAC /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
DA02839A1BF90DA900AA4DAC /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
DA02839D1BF90DA900AA4DAC /* 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_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
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 = 9.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
};
name = Debug;
};
DA02839E1BF90DA900AA4DAC /* 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_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
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 = 9.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
DA0283A01BF90DA900AA4DAC /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = ConcurrencyDemo/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = hossam.ConcurrencyDemo;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
DA0283A11BF90DA900AA4DAC /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
INFOPLIST_FILE = ConcurrencyDemo/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = hossam.ConcurrencyDemo;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
DA0283881BF90DA900AA4DAC /* Build configuration list for PBXProject "ConcurrencyDemo" */ = {
isa = XCConfigurationList;
buildConfigurations = (
DA02839D1BF90DA900AA4DAC /* Debug */,
DA02839E1BF90DA900AA4DAC /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
DA02839F1BF90DA900AA4DAC /* Build configuration list for PBXNativeTarget "ConcurrencyDemo" */ = {
isa = XCConfigurationList;
buildConfigurations = (
DA0283A01BF90DA900AA4DAC /* Debug */,
DA0283A11BF90DA900AA4DAC /* Release */,
);
defaultConfigurationIsVisible = 0;
};
/* End XCConfigurationList section */
};
rootObject = DA0283851BF90DA900AA4DAC /* Project object */;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<Bucket
type = "1"
version = "2.0">
<Breakpoints>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
shouldBeEnabled = "No"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "ConcurrencyDemo/ViewController.swift"
timestampString = "469394971.896961"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "47"
endingLineNumber = "47"
landmarkName = "didClickOnStart(_:)"
landmarkType = "5">
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>

0 comments on commit c90bd77

Please sign in to comment.