-
-
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.
#100DaysOfSwift - Week 6 - Complex View
- Loading branch information
1 parent
a4b2843
commit abfc831
Showing
24 changed files
with
969 additions
and
1 deletion.
There are no files selected for viewing
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,354 @@ | ||
// !$*UTF8*$! | ||
{ | ||
archiveVersion = 1; | ||
classes = { | ||
}; | ||
objectVersion = 50; | ||
objects = { | ||
|
||
/* Begin PBXBuildFile section */ | ||
9B51E1A524D8502600B108B1 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B51E1A424D8502600B108B1 /* AppDelegate.swift */; }; | ||
9B51E1A724D8502600B108B1 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B51E1A624D8502600B108B1 /* SceneDelegate.swift */; }; | ||
9B51E1A924D8502600B108B1 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B51E1A824D8502600B108B1 /* ContentView.swift */; }; | ||
9B51E1AB24D8502800B108B1 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9B51E1AA24D8502800B108B1 /* Assets.xcassets */; }; | ||
9B51E1AE24D8502800B108B1 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9B51E1AD24D8502800B108B1 /* Preview Assets.xcassets */; }; | ||
9B51E1B124D8502800B108B1 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9B51E1AF24D8502800B108B1 /* LaunchScreen.storyboard */; }; | ||
9B51E1B924D8518300B108B1 /* DetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B51E1B824D8518200B108B1 /* DetailView.swift */; }; | ||
/* End PBXBuildFile section */ | ||
|
||
/* Begin PBXFileReference section */ | ||
9B51E1A124D8502600B108B1 /* ComplexView.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ComplexView.app; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
9B51E1A424D8502600B108B1 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; }; | ||
9B51E1A624D8502600B108B1 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; }; | ||
9B51E1A824D8502600B108B1 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; }; | ||
9B51E1AA24D8502800B108B1 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; | ||
9B51E1AD24D8502800B108B1 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; }; | ||
9B51E1B024D8502800B108B1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | ||
9B51E1B224D8502800B108B1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | ||
9B51E1B824D8518200B108B1 /* DetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DetailView.swift; sourceTree = "<group>"; }; | ||
/* End PBXFileReference section */ | ||
|
||
/* Begin PBXFrameworksBuildPhase section */ | ||
9B51E19E24D8502600B108B1 /* Frameworks */ = { | ||
isa = PBXFrameworksBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXFrameworksBuildPhase section */ | ||
|
||
/* Begin PBXGroup section */ | ||
9B51E19824D8502600B108B1 = { | ||
isa = PBXGroup; | ||
children = ( | ||
9B51E1A324D8502600B108B1 /* ComplexView */, | ||
9B51E1A224D8502600B108B1 /* Products */, | ||
); | ||
sourceTree = "<group>"; | ||
}; | ||
9B51E1A224D8502600B108B1 /* Products */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
9B51E1A124D8502600B108B1 /* ComplexView.app */, | ||
); | ||
name = Products; | ||
sourceTree = "<group>"; | ||
}; | ||
9B51E1A324D8502600B108B1 /* ComplexView */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
9B51E1A424D8502600B108B1 /* AppDelegate.swift */, | ||
9B51E1A624D8502600B108B1 /* SceneDelegate.swift */, | ||
9B51E1A824D8502600B108B1 /* ContentView.swift */, | ||
9B51E1B824D8518200B108B1 /* DetailView.swift */, | ||
9B51E1AA24D8502800B108B1 /* Assets.xcassets */, | ||
9B51E1AF24D8502800B108B1 /* LaunchScreen.storyboard */, | ||
9B51E1B224D8502800B108B1 /* Info.plist */, | ||
9B51E1AC24D8502800B108B1 /* Preview Content */, | ||
); | ||
path = ComplexView; | ||
sourceTree = "<group>"; | ||
}; | ||
9B51E1AC24D8502800B108B1 /* Preview Content */ = { | ||
isa = PBXGroup; | ||
children = ( | ||
9B51E1AD24D8502800B108B1 /* Preview Assets.xcassets */, | ||
); | ||
path = "Preview Content"; | ||
sourceTree = "<group>"; | ||
}; | ||
/* End PBXGroup section */ | ||
|
||
/* Begin PBXNativeTarget section */ | ||
9B51E1A024D8502600B108B1 /* ComplexView */ = { | ||
isa = PBXNativeTarget; | ||
buildConfigurationList = 9B51E1B524D8502800B108B1 /* Build configuration list for PBXNativeTarget "ComplexView" */; | ||
buildPhases = ( | ||
9B51E19D24D8502600B108B1 /* Sources */, | ||
9B51E19E24D8502600B108B1 /* Frameworks */, | ||
9B51E19F24D8502600B108B1 /* Resources */, | ||
); | ||
buildRules = ( | ||
); | ||
dependencies = ( | ||
); | ||
name = ComplexView; | ||
productName = ComplexView; | ||
productReference = 9B51E1A124D8502600B108B1 /* ComplexView.app */; | ||
productType = "com.apple.product-type.application"; | ||
}; | ||
/* End PBXNativeTarget section */ | ||
|
||
/* Begin PBXProject section */ | ||
9B51E19924D8502600B108B1 /* Project object */ = { | ||
isa = PBXProject; | ||
attributes = { | ||
LastSwiftUpdateCheck = 1200; | ||
LastUpgradeCheck = 1200; | ||
TargetAttributes = { | ||
9B51E1A024D8502600B108B1 = { | ||
CreatedOnToolsVersion = 12.0; | ||
}; | ||
}; | ||
}; | ||
buildConfigurationList = 9B51E19C24D8502600B108B1 /* Build configuration list for PBXProject "ComplexView" */; | ||
compatibilityVersion = "Xcode 9.3"; | ||
developmentRegion = en; | ||
hasScannedForEncodings = 0; | ||
knownRegions = ( | ||
en, | ||
Base, | ||
); | ||
mainGroup = 9B51E19824D8502600B108B1; | ||
productRefGroup = 9B51E1A224D8502600B108B1 /* Products */; | ||
projectDirPath = ""; | ||
projectRoot = ""; | ||
targets = ( | ||
9B51E1A024D8502600B108B1 /* ComplexView */, | ||
); | ||
}; | ||
/* End PBXProject section */ | ||
|
||
/* Begin PBXResourcesBuildPhase section */ | ||
9B51E19F24D8502600B108B1 /* Resources */ = { | ||
isa = PBXResourcesBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
9B51E1B124D8502800B108B1 /* LaunchScreen.storyboard in Resources */, | ||
9B51E1AE24D8502800B108B1 /* Preview Assets.xcassets in Resources */, | ||
9B51E1AB24D8502800B108B1 /* Assets.xcassets in Resources */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXResourcesBuildPhase section */ | ||
|
||
/* Begin PBXSourcesBuildPhase section */ | ||
9B51E19D24D8502600B108B1 /* Sources */ = { | ||
isa = PBXSourcesBuildPhase; | ||
buildActionMask = 2147483647; | ||
files = ( | ||
9B51E1A524D8502600B108B1 /* AppDelegate.swift in Sources */, | ||
9B51E1B924D8518300B108B1 /* DetailView.swift in Sources */, | ||
9B51E1A724D8502600B108B1 /* SceneDelegate.swift in Sources */, | ||
9B51E1A924D8502600B108B1 /* ContentView.swift in Sources */, | ||
); | ||
runOnlyForDeploymentPostprocessing = 0; | ||
}; | ||
/* End PBXSourcesBuildPhase section */ | ||
|
||
/* Begin PBXVariantGroup section */ | ||
9B51E1AF24D8502800B108B1 /* LaunchScreen.storyboard */ = { | ||
isa = PBXVariantGroup; | ||
children = ( | ||
9B51E1B024D8502800B108B1 /* Base */, | ||
); | ||
name = LaunchScreen.storyboard; | ||
sourceTree = "<group>"; | ||
}; | ||
/* End PBXVariantGroup section */ | ||
|
||
/* Begin XCBuildConfiguration section */ | ||
9B51E1B324D8502800B108B1 /* 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_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||
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; | ||
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 = 14.0; | ||
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; | ||
}; | ||
9B51E1B424D8502800B108B1 /* 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_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||
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; | ||
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 = 14.0; | ||
MTL_ENABLE_DEBUG_INFO = NO; | ||
MTL_FAST_MATH = YES; | ||
SDKROOT = iphoneos; | ||
SWIFT_COMPILATION_MODE = wholemodule; | ||
SWIFT_OPTIMIZATION_LEVEL = "-O"; | ||
VALIDATE_PRODUCT = YES; | ||
}; | ||
name = Release; | ||
}; | ||
9B51E1B624D8502800B108B1 /* Debug */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; | ||
CODE_SIGN_STYLE = Automatic; | ||
DEVELOPMENT_ASSET_PATHS = "\"ComplexView/Preview Content\""; | ||
DEVELOPMENT_TEAM = A93HTE7476; | ||
ENABLE_PREVIEWS = YES; | ||
INFOPLIST_FILE = ComplexView/Info.plist; | ||
LD_RUNPATH_SEARCH_PATHS = ( | ||
"$(inherited)", | ||
"@executable_path/Frameworks", | ||
); | ||
PRODUCT_BUNDLE_IDENTIFIER = com.khamakhadeveloper.ComplexView; | ||
PRODUCT_NAME = "$(TARGET_NAME)"; | ||
SWIFT_VERSION = 5.0; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
}; | ||
name = Debug; | ||
}; | ||
9B51E1B724D8502800B108B1 /* Release */ = { | ||
isa = XCBuildConfiguration; | ||
buildSettings = { | ||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; | ||
CODE_SIGN_STYLE = Automatic; | ||
DEVELOPMENT_ASSET_PATHS = "\"ComplexView/Preview Content\""; | ||
DEVELOPMENT_TEAM = A93HTE7476; | ||
ENABLE_PREVIEWS = YES; | ||
INFOPLIST_FILE = ComplexView/Info.plist; | ||
LD_RUNPATH_SEARCH_PATHS = ( | ||
"$(inherited)", | ||
"@executable_path/Frameworks", | ||
); | ||
PRODUCT_BUNDLE_IDENTIFIER = com.khamakhadeveloper.ComplexView; | ||
PRODUCT_NAME = "$(TARGET_NAME)"; | ||
SWIFT_VERSION = 5.0; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
}; | ||
name = Release; | ||
}; | ||
/* End XCBuildConfiguration section */ | ||
|
||
/* Begin XCConfigurationList section */ | ||
9B51E19C24D8502600B108B1 /* Build configuration list for PBXProject "ComplexView" */ = { | ||
isa = XCConfigurationList; | ||
buildConfigurations = ( | ||
9B51E1B324D8502800B108B1 /* Debug */, | ||
9B51E1B424D8502800B108B1 /* Release */, | ||
); | ||
defaultConfigurationIsVisible = 0; | ||
defaultConfigurationName = Release; | ||
}; | ||
9B51E1B524D8502800B108B1 /* Build configuration list for PBXNativeTarget "ComplexView" */ = { | ||
isa = XCConfigurationList; | ||
buildConfigurations = ( | ||
9B51E1B624D8502800B108B1 /* Debug */, | ||
9B51E1B724D8502800B108B1 /* Release */, | ||
); | ||
defaultConfigurationIsVisible = 0; | ||
defaultConfigurationName = Release; | ||
}; | ||
/* End XCConfigurationList section */ | ||
}; | ||
rootObject = 9B51E19924D8502600B108B1 /* Project object */; | ||
} |
7 changes: 7 additions & 0 deletions
7
ComplexView/ComplexView.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
ComplexView/ComplexView.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.