-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added easier GCD with performSelector to Project 7 within copy at P09B
- Loading branch information
1 parent
28d75fc
commit a0a213a
Showing
14 changed files
with
885 additions
and
0 deletions.
There are no files selected for viewing
353 changes: 353 additions & 0 deletions
353
P09B WhiteHousePetitions/P07 WhiteHousePetitions.xcodeproj/project.pbxproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,353 @@ | ||
// !$*UTF8*$! | ||
{ | ||
archiveVersion = 1; | ||
classes = { | ||
}; | ||
objectVersion = 50; | ||
objects = { | ||
|
||
/* Begin PBXBuildFile section */ | ||
883C5AEB22F6DD850040F91B /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 883C5AEA22F6DD850040F91B /* AppDelegate.swift */; }; | ||
883C5AED22F6DD850040F91B /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 883C5AEC22F6DD850040F91B /* ViewController.swift */; }; | ||
883C5AF022F6DD850040F91B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 883C5AEE22F6DD850040F91B /* Main.storyboard */; }; | ||
883C5AF222F6DD860040F91B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 883C5AF122F6DD860040F91B /* Assets.xcassets */; }; | ||
883C5AF522F6DD860040F91B /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 883C5AF322F6DD860040F91B /* LaunchScreen.storyboard */; }; | ||
883C5AFD22F6E52F0040F91B /* Petition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 883C5AFC22F6E52F0040F91B /* Petition.swift */; }; | ||
883C5AFF22F6E5910040F91B /* Petitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 883C5AFE22F6E5910040F91B /* Petitions.swift */; }; | ||
883C5B0122F6E9040040F91B /* DetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 883C5B0022F6E9040040F91B /* DetailViewController.swift */; }; | ||
/* End PBXBuildFile section */ | ||
|
||
/* Begin PBXFileReference section */ | ||
883C5AE722F6DD850040F91B /* P07 WhiteHousePetitions.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "P07 WhiteHousePetitions.app"; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
883C5AEA22F6DD850040F91B /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; }; | ||
883C5AEC22F6DD850040F91B /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; }; | ||
883C5AEF22F6DD850040F91B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; }; | ||
883C5AF122F6DD860040F91B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; | ||
883C5AF422F6DD860040F91B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | ||
883C5AF622F6DD860040F91B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | ||
883C5AFC22F6E52F0040F91B /* Petition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Petition.swift; sourceTree = "<group>"; }; | ||
883C5AFE22F6E5910040F91B /* Petitions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Petitions.swift; sourceTree = "<group>"; }; | ||
883C5B0022F6E9040040F91B /* DetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DetailViewController.swift; sourceTree = "<group>"; }; | ||
/* End PBXFileReference section */ | ||
|
||
/* Begin PBXFrameworksBuildPhase section */ | ||
883C5AE422F6DD850040F91B /* Frameworks */ = { | ||
isa = PBXFrameworksBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXFrameworksBuildPhase section */ | ||
|
||
/* Begin PBXGroup section */ | ||
883C5ADE22F6DD840040F91B = { | ||
isa = PBXGroup; | ||
children = ( | ||
883C5AE922F6DD850040F91B /* P07 WhiteHousePetitions */, | ||
883C5AE822F6DD850040F91B /* Products */, | ||
); | ||
sourceTree = "<group>"; | ||
}; | ||
883C5AE822F6DD850040F91B /* Products */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
883C5AE722F6DD850040F91B /* P07 WhiteHousePetitions.app */, | ||
); | ||
name = Products; | ||
sourceTree = "<group>"; | ||
}; | ||
883C5AE922F6DD850040F91B /* P07 WhiteHousePetitions */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
883C5AEA22F6DD850040F91B /* AppDelegate.swift */, | ||
883C5AEC22F6DD850040F91B /* ViewController.swift */, | ||
883C5B0022F6E9040040F91B /* DetailViewController.swift */, | ||
883C5AFC22F6E52F0040F91B /* Petition.swift */, | ||
883C5AFE22F6E5910040F91B /* Petitions.swift */, | ||
883C5AEE22F6DD850040F91B /* Main.storyboard */, | ||
883C5AF122F6DD860040F91B /* Assets.xcassets */, | ||
883C5AF322F6DD860040F91B /* LaunchScreen.storyboard */, | ||
883C5AF622F6DD860040F91B /* Info.plist */, | ||
); | ||
path = "P07 WhiteHousePetitions"; | ||
sourceTree = "<group>"; | ||
}; | ||
/* End PBXGroup section */ | ||
|
||
/* Begin PBXNativeTarget section */ | ||
883C5AE622F6DD850040F91B /* P07 WhiteHousePetitions */ = { | ||
isa = PBXNativeTarget; | ||
buildConfigurationList = 883C5AF922F6DD860040F91B /* Build configuration list for PBXNativeTarget "P07 WhiteHousePetitions" */; | ||
buildPhases = ( | ||
883C5AE322F6DD850040F91B /* Sources */, | ||
883C5AE422F6DD850040F91B /* Frameworks */, | ||
883C5AE522F6DD850040F91B /* Resources */, | ||
); | ||
buildRules = ( | ||
); | ||
dependencies = ( | ||
); | ||
name = "P07 WhiteHousePetitions"; | ||
productName = "P07 WhiteHousePetitions"; | ||
productReference = 883C5AE722F6DD850040F91B /* P07 WhiteHousePetitions.app */; | ||
productType = "com.apple.product-type.application"; | ||
}; | ||
/* End PBXNativeTarget section */ | ||
|
||
/* Begin PBXProject section */ | ||
883C5ADF22F6DD840040F91B /* Project object */ = { | ||
isa = PBXProject; | ||
attributes = { | ||
LastSwiftUpdateCheck = 1020; | ||
LastUpgradeCheck = 1020; | ||
ORGANIZATIONNAME = "Mindwarp Consultancy Ltd"; | ||
TargetAttributes = { | ||
883C5AE622F6DD850040F91B = { | ||
CreatedOnToolsVersion = 10.2.1; | ||
}; | ||
}; | ||
}; | ||
buildConfigurationList = 883C5AE222F6DD840040F91B /* Build configuration list for PBXProject "P07 WhiteHousePetitions" */; | ||
compatibilityVersion = "Xcode 9.3"; | ||
developmentRegion = en; | ||
hasScannedForEncodings = 0; | ||
knownRegions = ( | ||
en, | ||
Base, | ||
); | ||
mainGroup = 883C5ADE22F6DD840040F91B; | ||
productRefGroup = 883C5AE822F6DD850040F91B /* Products */; | ||
projectDirPath = ""; | ||
projectRoot = ""; | ||
targets = ( | ||
883C5AE622F6DD850040F91B /* P07 WhiteHousePetitions */, | ||
); | ||
}; | ||
/* End PBXProject section */ | ||
|
||
/* Begin PBXResourcesBuildPhase section */ | ||
883C5AE522F6DD850040F91B /* Resources */ = { | ||
isa = PBXResourcesBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
883C5AF522F6DD860040F91B /* LaunchScreen.storyboard in Resources */, | ||
883C5AF222F6DD860040F91B /* Assets.xcassets in Resources */, | ||
883C5AF022F6DD850040F91B /* Main.storyboard in Resources */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXResourcesBuildPhase section */ | ||
|
||
/* Begin PBXSourcesBuildPhase section */ | ||
883C5AE322F6DD850040F91B /* Sources */ = { | ||
isa = PBXSourcesBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
883C5AED22F6DD850040F91B /* ViewController.swift in Sources */, | ||
883C5AFF22F6E5910040F91B /* Petitions.swift in Sources */, | ||
883C5B0122F6E9040040F91B /* DetailViewController.swift in Sources */, | ||
883C5AEB22F6DD850040F91B /* AppDelegate.swift in Sources */, | ||
883C5AFD22F6E52F0040F91B /* Petition.swift in Sources */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXSourcesBuildPhase section */ | ||
|
||
/* Begin PBXVariantGroup section */ | ||
883C5AEE22F6DD850040F91B /* Main.storyboard */ = { | ||
isa = PBXVariantGroup; | ||
children = ( | ||
883C5AEF22F6DD850040F91B /* Base */, | ||
); | ||
name = Main.storyboard; | ||
sourceTree = "<group>"; | ||
}; | ||
883C5AF322F6DD860040F91B /* LaunchScreen.storyboard */ = { | ||
isa = PBXVariantGroup; | ||
children = ( | ||
883C5AF422F6DD860040F91B /* Base */, | ||
); | ||
name = LaunchScreen.storyboard; | ||
sourceTree = "<group>"; | ||
}; | ||
/* End PBXVariantGroup section */ | ||
|
||
/* Begin XCBuildConfiguration section */ | ||
883C5AF722F6DD860040F91B /* Debug */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ALWAYS_SEARCH_USER_PATHS = NO; | ||
CLANG_ANALYZER_NONNULL = YES; | ||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; | ||
CLANG_CXX_LIBRARY = "libc++"; | ||
CLANG_ENABLE_MODULES = YES; | ||
CLANG_ENABLE_OBJC_ARC = YES; | ||
CLANG_ENABLE_OBJC_WEAK = YES; | ||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
CLANG_WARN_BOOL_CONVERSION = YES; | ||
CLANG_WARN_COMMA = YES; | ||
CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
CLANG_WARN_EMPTY_BODY = YES; | ||
CLANG_WARN_ENUM_CONVERSION = YES; | ||
CLANG_WARN_INFINITE_RECURSION = YES; | ||
CLANG_WARN_INT_CONVERSION = YES; | ||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
CLANG_WARN_UNREACHABLE_CODE = YES; | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
CODE_SIGN_IDENTITY = "iPhone Developer"; | ||
COPY_PHASE_STRIP = NO; | ||
DEBUG_INFORMATION_FORMAT = dwarf; | ||
ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
ENABLE_TESTABILITY = YES; | ||
GCC_C_LANGUAGE_STANDARD = gnu11; | ||
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 = 12.2; | ||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; | ||
MTL_FAST_MATH = YES; | ||
ONLY_ACTIVE_ARCH = YES; | ||
SDKROOT = iphoneos; | ||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; | ||
SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | ||
}; | ||
name = Debug; | ||
}; | ||
883C5AF822F6DD860040F91B /* Release */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ALWAYS_SEARCH_USER_PATHS = NO; | ||
CLANG_ANALYZER_NONNULL = YES; | ||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; | ||
CLANG_CXX_LIBRARY = "libc++"; | ||
CLANG_ENABLE_MODULES = YES; | ||
CLANG_ENABLE_OBJC_ARC = YES; | ||
CLANG_ENABLE_OBJC_WEAK = YES; | ||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
CLANG_WARN_BOOL_CONVERSION = YES; | ||
CLANG_WARN_COMMA = YES; | ||
CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
CLANG_WARN_EMPTY_BODY = YES; | ||
CLANG_WARN_ENUM_CONVERSION = YES; | ||
CLANG_WARN_INFINITE_RECURSION = YES; | ||
CLANG_WARN_INT_CONVERSION = YES; | ||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
CLANG_WARN_UNREACHABLE_CODE = YES; | ||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
CODE_SIGN_IDENTITY = "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 = gnu11; | ||
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 = 12.2; | ||
MTL_ENABLE_DEBUG_INFO = NO; | ||
MTL_FAST_MATH = YES; | ||
SDKROOT = iphoneos; | ||
SWIFT_COMPILATION_MODE = wholemodule; | ||
SWIFT_OPTIMIZATION_LEVEL = "-O"; | ||
VALIDATE_PRODUCT = YES; | ||
}; | ||
name = Release; | ||
}; | ||
883C5AFA22F6DD860040F91B /* Debug */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
CODE_SIGN_STYLE = Automatic; | ||
DEVELOPMENT_TEAM = M3R45325T7; | ||
INFOPLIST_FILE = "P07 WhiteHousePetitions/Info.plist"; | ||
LD_RUNPATH_SEARCH_PATHS = ( | ||
"$(inherited)", | ||
"@executable_path/Frameworks", | ||
); | ||
PRODUCT_BUNDLE_IDENTIFIER = "com.mclapps.P07-WhiteHousePetitions"; | ||
PRODUCT_NAME = "$(TARGET_NAME)"; | ||
SWIFT_VERSION = 5.0; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
}; | ||
name = Debug; | ||
}; | ||
883C5AFB22F6DD860040F91B /* Release */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
CODE_SIGN_STYLE = Automatic; | ||
DEVELOPMENT_TEAM = M3R45325T7; | ||
INFOPLIST_FILE = "P07 WhiteHousePetitions/Info.plist"; | ||
LD_RUNPATH_SEARCH_PATHS = ( | ||
"$(inherited)", | ||
"@executable_path/Frameworks", | ||
); | ||
PRODUCT_BUNDLE_IDENTIFIER = "com.mclapps.P07-WhiteHousePetitions"; | ||
PRODUCT_NAME = "$(TARGET_NAME)"; | ||
SWIFT_VERSION = 5.0; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
}; | ||
name = Release; | ||
}; | ||
/* End XCBuildConfiguration section */ | ||
|
||
/* Begin XCConfigurationList section */ | ||
883C5AE222F6DD840040F91B /* Build configuration list for PBXProject "P07 WhiteHousePetitions" */ = { | ||
isa = XCConfigurationList; | ||
buildConfigurations = ( | ||
883C5AF722F6DD860040F91B /* Debug */, | ||
883C5AF822F6DD860040F91B /* Release */, | ||
); | ||
defaultConfigurationIsVisible = 0; | ||
defaultConfigurationName = Release; | ||
}; | ||
883C5AF922F6DD860040F91B /* Build configuration list for PBXNativeTarget "P07 WhiteHousePetitions" */ = { | ||
isa = XCConfigurationList; | ||
buildConfigurations = ( | ||
883C5AFA22F6DD860040F91B /* Debug */, | ||
883C5AFB22F6DD860040F91B /* Release */, | ||
); | ||
defaultConfigurationIsVisible = 0; | ||
defaultConfigurationName = Release; | ||
}; | ||
/* End XCConfigurationList section */ | ||
}; | ||
rootObject = 883C5ADF22F6DD840040F91B /* Project object */; | ||
} |
7 changes: 7 additions & 0 deletions
7
...ePetitions/P07 WhiteHousePetitions.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
...7 WhiteHousePetitions.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?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>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
Oops, something went wrong.