├── README.md
├── ToodleDo.xcodeproj
├── project.xcworkspace
│ └── contents.xcworkspacedata
├── xcuserdata
│ └── angelayu.xcuserdatad
│ │ └── xcschemes
│ │ └── xcschememanagement.plist
└── project.pbxproj
└── ToodleDo
├── ToodleDo.xcdatamodeld
├── .xccurrentversion
└── ToodleDo.xcdatamodel
│ └── contents
├── ViewController.swift
├── Info.plist
├── Base.lproj
├── LaunchScreen.storyboard
└── Main.storyboard
├── Assets.xcassets
└── AppIcon.appiconset
│ └── Contents.json
└── AppDelegate.swift
/README.md:
--------------------------------------------------------------------------------
1 | # ToodleDo
2 | ToDo List App
3 |
--------------------------------------------------------------------------------
/ToodleDo.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ToodleDo/ToodleDo.xcdatamodeld/.xccurrentversion:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | _XCCurrentVersionName
6 | ToodleDo.xcdatamodel
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ToodleDo/ToodleDo.xcdatamodeld/ToodleDo.xcdatamodel/contents:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ToodleDo.xcodeproj/xcuserdata/angelayu.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | ToodleDo.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/ToodleDo/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // ToodleDo
4 | //
5 | // Created by Angela Yu on 06/09/2017.
6 | // Copyright © 2017 Angela Yu. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | class ViewController: UIViewController {
12 |
13 | override func viewDidLoad() {
14 | super.viewDidLoad()
15 | // Do any additional setup after loading the view, typically from a nib.
16 | }
17 |
18 | override func didReceiveMemoryWarning() {
19 | super.didReceiveMemoryWarning()
20 | // Dispose of any resources that can be recreated.
21 | }
22 |
23 |
24 | }
25 |
26 |
--------------------------------------------------------------------------------
/ToodleDo/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleVersion
20 | 1
21 | LSRequiresIPhoneOS
22 |
23 | UILaunchStoryboardName
24 | LaunchScreen
25 | UIMainStoryboardFile
26 | Main
27 | UIRequiredDeviceCapabilities
28 |
29 | armv7
30 |
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UISupportedInterfaceOrientations~ipad
38 |
39 | UIInterfaceOrientationPortrait
40 | UIInterfaceOrientationPortraitUpsideDown
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/ToodleDo/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/ToodleDo/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "20x20",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "20x20",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "29x29",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "29x29",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "40x40",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "40x40",
31 | "scale" : "3x"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "size" : "60x60",
36 | "scale" : "2x"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "size" : "60x60",
41 | "scale" : "3x"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "size" : "20x20",
46 | "scale" : "1x"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "size" : "20x20",
51 | "scale" : "2x"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "size" : "29x29",
56 | "scale" : "1x"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "size" : "29x29",
61 | "scale" : "2x"
62 | },
63 | {
64 | "idiom" : "ipad",
65 | "size" : "40x40",
66 | "scale" : "1x"
67 | },
68 | {
69 | "idiom" : "ipad",
70 | "size" : "40x40",
71 | "scale" : "2x"
72 | },
73 | {
74 | "idiom" : "ipad",
75 | "size" : "76x76",
76 | "scale" : "1x"
77 | },
78 | {
79 | "idiom" : "ipad",
80 | "size" : "76x76",
81 | "scale" : "2x"
82 | },
83 | {
84 | "idiom" : "ipad",
85 | "size" : "83.5x83.5",
86 | "scale" : "2x"
87 | }
88 | ],
89 | "info" : {
90 | "version" : 1,
91 | "author" : "xcode"
92 | }
93 | }
--------------------------------------------------------------------------------
/ToodleDo/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/ToodleDo/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // ToodleDo
4 | //
5 | // Created by Angela Yu on 06/09/2017.
6 | // Copyright © 2017 Angela Yu. All rights reserved.
7 | //
8 |
9 | import UIKit
10 | import CoreData
11 |
12 | @UIApplicationMain
13 | class AppDelegate: UIResponder, UIApplicationDelegate {
14 |
15 | var window: UIWindow?
16 |
17 |
18 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
19 | // Override point for customization after application launch.
20 | return true
21 | }
22 |
23 | func applicationWillResignActive(_ application: UIApplication) {
24 | // 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.
25 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
26 | }
27 |
28 | func applicationDidEnterBackground(_ application: UIApplication) {
29 | // 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.
30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
31 | }
32 |
33 | func applicationWillEnterForeground(_ application: UIApplication) {
34 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
35 | }
36 |
37 | func applicationDidBecomeActive(_ application: UIApplication) {
38 | // 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.
39 | }
40 |
41 | func applicationWillTerminate(_ application: UIApplication) {
42 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
43 | // Saves changes in the application's managed object context before the application terminates.
44 | self.saveContext()
45 | }
46 |
47 | // MARK: - Core Data stack
48 |
49 | lazy var persistentContainer: NSPersistentContainer = {
50 | /*
51 | The persistent container for the application. This implementation
52 | creates and returns a container, having loaded the store for the
53 | application to it. This property is optional since there are legitimate
54 | error conditions that could cause the creation of the store to fail.
55 | */
56 | let container = NSPersistentContainer(name: "ToodleDo")
57 | container.loadPersistentStores(completionHandler: { (storeDescription, error) in
58 | if let error = error as NSError? {
59 | // Replace this implementation with code to handle the error appropriately.
60 | // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
61 |
62 | /*
63 | Typical reasons for an error here include:
64 | * The parent directory does not exist, cannot be created, or disallows writing.
65 | * The persistent store is not accessible, due to permissions or data protection when the device is locked.
66 | * The device is out of space.
67 | * The store could not be migrated to the current model version.
68 | Check the error message to determine what the actual problem was.
69 | */
70 | fatalError("Unresolved error \(error), \(error.userInfo)")
71 | }
72 | })
73 | return container
74 | }()
75 |
76 | // MARK: - Core Data Saving support
77 |
78 | func saveContext () {
79 | let context = persistentContainer.viewContext
80 | if context.hasChanges {
81 | do {
82 | try context.save()
83 | } catch {
84 | // Replace this implementation with code to handle the error appropriately.
85 | // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
86 | let nserror = error as NSError
87 | fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
88 | }
89 | }
90 | }
91 |
92 | }
93 |
94 |
--------------------------------------------------------------------------------
/ToodleDo.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 48;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | ADFBFA471F60396C00B07F35 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADFBFA461F60396C00B07F35 /* AppDelegate.swift */; };
11 | ADFBFA491F60396C00B07F35 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADFBFA481F60396C00B07F35 /* ViewController.swift */; };
12 | ADFBFA4C1F60396C00B07F35 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ADFBFA4A1F60396C00B07F35 /* Main.storyboard */; };
13 | ADFBFA4F1F60396C00B07F35 /* ToodleDo.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = ADFBFA4D1F60396C00B07F35 /* ToodleDo.xcdatamodeld */; };
14 | ADFBFA511F60396C00B07F35 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = ADFBFA501F60396C00B07F35 /* Assets.xcassets */; };
15 | ADFBFA541F60396C00B07F35 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ADFBFA521F60396C00B07F35 /* LaunchScreen.storyboard */; };
16 | /* End PBXBuildFile section */
17 |
18 | /* Begin PBXFileReference section */
19 | ADFBFA431F60396C00B07F35 /* ToodleDo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ToodleDo.app; sourceTree = BUILT_PRODUCTS_DIR; };
20 | ADFBFA461F60396C00B07F35 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
21 | ADFBFA481F60396C00B07F35 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
22 | ADFBFA4B1F60396C00B07F35 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
23 | ADFBFA4E1F60396C00B07F35 /* ToodleDo.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = ToodleDo.xcdatamodel; sourceTree = ""; };
24 | ADFBFA501F60396C00B07F35 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
25 | ADFBFA531F60396C00B07F35 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
26 | ADFBFA551F60396C00B07F35 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
27 | /* End PBXFileReference section */
28 |
29 | /* Begin PBXFrameworksBuildPhase section */
30 | ADFBFA401F60396C00B07F35 /* Frameworks */ = {
31 | isa = PBXFrameworksBuildPhase;
32 | buildActionMask = 2147483647;
33 | files = (
34 | );
35 | runOnlyForDeploymentPostprocessing = 0;
36 | };
37 | /* End PBXFrameworksBuildPhase section */
38 |
39 | /* Begin PBXGroup section */
40 | ADFBFA3A1F60396C00B07F35 = {
41 | isa = PBXGroup;
42 | children = (
43 | ADFBFA451F60396C00B07F35 /* ToodleDo */,
44 | ADFBFA441F60396C00B07F35 /* Products */,
45 | );
46 | sourceTree = "";
47 | };
48 | ADFBFA441F60396C00B07F35 /* Products */ = {
49 | isa = PBXGroup;
50 | children = (
51 | ADFBFA431F60396C00B07F35 /* ToodleDo.app */,
52 | );
53 | name = Products;
54 | sourceTree = "";
55 | };
56 | ADFBFA451F60396C00B07F35 /* ToodleDo */ = {
57 | isa = PBXGroup;
58 | children = (
59 | ADFBFA461F60396C00B07F35 /* AppDelegate.swift */,
60 | ADFBFA481F60396C00B07F35 /* ViewController.swift */,
61 | ADFBFA4A1F60396C00B07F35 /* Main.storyboard */,
62 | ADFBFA501F60396C00B07F35 /* Assets.xcassets */,
63 | ADFBFA521F60396C00B07F35 /* LaunchScreen.storyboard */,
64 | ADFBFA551F60396C00B07F35 /* Info.plist */,
65 | ADFBFA4D1F60396C00B07F35 /* ToodleDo.xcdatamodeld */,
66 | );
67 | path = ToodleDo;
68 | sourceTree = "";
69 | };
70 | /* End PBXGroup section */
71 |
72 | /* Begin PBXNativeTarget section */
73 | ADFBFA421F60396C00B07F35 /* ToodleDo */ = {
74 | isa = PBXNativeTarget;
75 | buildConfigurationList = ADFBFA581F60396C00B07F35 /* Build configuration list for PBXNativeTarget "ToodleDo" */;
76 | buildPhases = (
77 | ADFBFA3F1F60396C00B07F35 /* Sources */,
78 | ADFBFA401F60396C00B07F35 /* Frameworks */,
79 | ADFBFA411F60396C00B07F35 /* Resources */,
80 | );
81 | buildRules = (
82 | );
83 | dependencies = (
84 | );
85 | name = ToodleDo;
86 | productName = ToodleDo;
87 | productReference = ADFBFA431F60396C00B07F35 /* ToodleDo.app */;
88 | productType = "com.apple.product-type.application";
89 | };
90 | /* End PBXNativeTarget section */
91 |
92 | /* Begin PBXProject section */
93 | ADFBFA3B1F60396C00B07F35 /* Project object */ = {
94 | isa = PBXProject;
95 | attributes = {
96 | LastSwiftUpdateCheck = 0900;
97 | LastUpgradeCheck = 0900;
98 | ORGANIZATIONNAME = "Angela Yu";
99 | TargetAttributes = {
100 | ADFBFA421F60396C00B07F35 = {
101 | CreatedOnToolsVersion = 9.0;
102 | ProvisioningStyle = Automatic;
103 | };
104 | };
105 | };
106 | buildConfigurationList = ADFBFA3E1F60396C00B07F35 /* Build configuration list for PBXProject "ToodleDo" */;
107 | compatibilityVersion = "Xcode 8.0";
108 | developmentRegion = en;
109 | hasScannedForEncodings = 0;
110 | knownRegions = (
111 | en,
112 | Base,
113 | );
114 | mainGroup = ADFBFA3A1F60396C00B07F35;
115 | productRefGroup = ADFBFA441F60396C00B07F35 /* Products */;
116 | projectDirPath = "";
117 | projectRoot = "";
118 | targets = (
119 | ADFBFA421F60396C00B07F35 /* ToodleDo */,
120 | );
121 | };
122 | /* End PBXProject section */
123 |
124 | /* Begin PBXResourcesBuildPhase section */
125 | ADFBFA411F60396C00B07F35 /* Resources */ = {
126 | isa = PBXResourcesBuildPhase;
127 | buildActionMask = 2147483647;
128 | files = (
129 | ADFBFA541F60396C00B07F35 /* LaunchScreen.storyboard in Resources */,
130 | ADFBFA511F60396C00B07F35 /* Assets.xcassets in Resources */,
131 | ADFBFA4C1F60396C00B07F35 /* Main.storyboard in Resources */,
132 | );
133 | runOnlyForDeploymentPostprocessing = 0;
134 | };
135 | /* End PBXResourcesBuildPhase section */
136 |
137 | /* Begin PBXSourcesBuildPhase section */
138 | ADFBFA3F1F60396C00B07F35 /* Sources */ = {
139 | isa = PBXSourcesBuildPhase;
140 | buildActionMask = 2147483647;
141 | files = (
142 | ADFBFA491F60396C00B07F35 /* ViewController.swift in Sources */,
143 | ADFBFA4F1F60396C00B07F35 /* ToodleDo.xcdatamodeld in Sources */,
144 | ADFBFA471F60396C00B07F35 /* AppDelegate.swift in Sources */,
145 | );
146 | runOnlyForDeploymentPostprocessing = 0;
147 | };
148 | /* End PBXSourcesBuildPhase section */
149 |
150 | /* Begin PBXVariantGroup section */
151 | ADFBFA4A1F60396C00B07F35 /* Main.storyboard */ = {
152 | isa = PBXVariantGroup;
153 | children = (
154 | ADFBFA4B1F60396C00B07F35 /* Base */,
155 | );
156 | name = Main.storyboard;
157 | sourceTree = "";
158 | };
159 | ADFBFA521F60396C00B07F35 /* LaunchScreen.storyboard */ = {
160 | isa = PBXVariantGroup;
161 | children = (
162 | ADFBFA531F60396C00B07F35 /* Base */,
163 | );
164 | name = LaunchScreen.storyboard;
165 | sourceTree = "";
166 | };
167 | /* End PBXVariantGroup section */
168 |
169 | /* Begin XCBuildConfiguration section */
170 | ADFBFA561F60396C00B07F35 /* Debug */ = {
171 | isa = XCBuildConfiguration;
172 | buildSettings = {
173 | ALWAYS_SEARCH_USER_PATHS = NO;
174 | CLANG_ANALYZER_NONNULL = YES;
175 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
176 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
177 | CLANG_CXX_LIBRARY = "libc++";
178 | CLANG_ENABLE_MODULES = YES;
179 | CLANG_ENABLE_OBJC_ARC = YES;
180 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
181 | CLANG_WARN_BOOL_CONVERSION = YES;
182 | CLANG_WARN_COMMA = YES;
183 | CLANG_WARN_CONSTANT_CONVERSION = YES;
184 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
185 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
186 | CLANG_WARN_EMPTY_BODY = YES;
187 | CLANG_WARN_ENUM_CONVERSION = YES;
188 | CLANG_WARN_INFINITE_RECURSION = YES;
189 | CLANG_WARN_INT_CONVERSION = YES;
190 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
191 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
192 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
193 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
194 | CLANG_WARN_STRICT_PROTOTYPES = YES;
195 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
196 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
197 | CLANG_WARN_UNREACHABLE_CODE = YES;
198 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
199 | CODE_SIGN_IDENTITY = "iPhone Developer";
200 | COPY_PHASE_STRIP = NO;
201 | DEBUG_INFORMATION_FORMAT = dwarf;
202 | ENABLE_STRICT_OBJC_MSGSEND = YES;
203 | ENABLE_TESTABILITY = YES;
204 | GCC_C_LANGUAGE_STANDARD = gnu11;
205 | GCC_DYNAMIC_NO_PIC = NO;
206 | GCC_NO_COMMON_BLOCKS = YES;
207 | GCC_OPTIMIZATION_LEVEL = 0;
208 | GCC_PREPROCESSOR_DEFINITIONS = (
209 | "DEBUG=1",
210 | "$(inherited)",
211 | );
212 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
213 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
214 | GCC_WARN_UNDECLARED_SELECTOR = YES;
215 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
216 | GCC_WARN_UNUSED_FUNCTION = YES;
217 | GCC_WARN_UNUSED_VARIABLE = YES;
218 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
219 | MTL_ENABLE_DEBUG_INFO = YES;
220 | ONLY_ACTIVE_ARCH = YES;
221 | SDKROOT = iphoneos;
222 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
223 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
224 | };
225 | name = Debug;
226 | };
227 | ADFBFA571F60396C00B07F35 /* Release */ = {
228 | isa = XCBuildConfiguration;
229 | buildSettings = {
230 | ALWAYS_SEARCH_USER_PATHS = NO;
231 | CLANG_ANALYZER_NONNULL = YES;
232 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
233 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
234 | CLANG_CXX_LIBRARY = "libc++";
235 | CLANG_ENABLE_MODULES = YES;
236 | CLANG_ENABLE_OBJC_ARC = YES;
237 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
238 | CLANG_WARN_BOOL_CONVERSION = YES;
239 | CLANG_WARN_COMMA = YES;
240 | CLANG_WARN_CONSTANT_CONVERSION = YES;
241 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
242 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
243 | CLANG_WARN_EMPTY_BODY = YES;
244 | CLANG_WARN_ENUM_CONVERSION = YES;
245 | CLANG_WARN_INFINITE_RECURSION = YES;
246 | CLANG_WARN_INT_CONVERSION = YES;
247 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
248 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
249 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
250 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
251 | CLANG_WARN_STRICT_PROTOTYPES = YES;
252 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
253 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
254 | CLANG_WARN_UNREACHABLE_CODE = YES;
255 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
256 | CODE_SIGN_IDENTITY = "iPhone Developer";
257 | COPY_PHASE_STRIP = NO;
258 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
259 | ENABLE_NS_ASSERTIONS = NO;
260 | ENABLE_STRICT_OBJC_MSGSEND = YES;
261 | GCC_C_LANGUAGE_STANDARD = gnu11;
262 | GCC_NO_COMMON_BLOCKS = YES;
263 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
264 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
265 | GCC_WARN_UNDECLARED_SELECTOR = YES;
266 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
267 | GCC_WARN_UNUSED_FUNCTION = YES;
268 | GCC_WARN_UNUSED_VARIABLE = YES;
269 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
270 | MTL_ENABLE_DEBUG_INFO = NO;
271 | SDKROOT = iphoneos;
272 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
273 | VALIDATE_PRODUCT = YES;
274 | };
275 | name = Release;
276 | };
277 | ADFBFA591F60396C00B07F35 /* Debug */ = {
278 | isa = XCBuildConfiguration;
279 | buildSettings = {
280 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
281 | CODE_SIGN_STYLE = Automatic;
282 | INFOPLIST_FILE = ToodleDo/Info.plist;
283 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
284 | PRODUCT_BUNDLE_IDENTIFIER = com.londonappbrewery.ToodleDo;
285 | PRODUCT_NAME = "$(TARGET_NAME)";
286 | SWIFT_VERSION = 4.0;
287 | TARGETED_DEVICE_FAMILY = "1,2";
288 | };
289 | name = Debug;
290 | };
291 | ADFBFA5A1F60396C00B07F35 /* Release */ = {
292 | isa = XCBuildConfiguration;
293 | buildSettings = {
294 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
295 | CODE_SIGN_STYLE = Automatic;
296 | INFOPLIST_FILE = ToodleDo/Info.plist;
297 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
298 | PRODUCT_BUNDLE_IDENTIFIER = com.londonappbrewery.ToodleDo;
299 | PRODUCT_NAME = "$(TARGET_NAME)";
300 | SWIFT_VERSION = 4.0;
301 | TARGETED_DEVICE_FAMILY = "1,2";
302 | };
303 | name = Release;
304 | };
305 | /* End XCBuildConfiguration section */
306 |
307 | /* Begin XCConfigurationList section */
308 | ADFBFA3E1F60396C00B07F35 /* Build configuration list for PBXProject "ToodleDo" */ = {
309 | isa = XCConfigurationList;
310 | buildConfigurations = (
311 | ADFBFA561F60396C00B07F35 /* Debug */,
312 | ADFBFA571F60396C00B07F35 /* Release */,
313 | );
314 | defaultConfigurationIsVisible = 0;
315 | defaultConfigurationName = Release;
316 | };
317 | ADFBFA581F60396C00B07F35 /* Build configuration list for PBXNativeTarget "ToodleDo" */ = {
318 | isa = XCConfigurationList;
319 | buildConfigurations = (
320 | ADFBFA591F60396C00B07F35 /* Debug */,
321 | ADFBFA5A1F60396C00B07F35 /* Release */,
322 | );
323 | defaultConfigurationIsVisible = 0;
324 | defaultConfigurationName = Release;
325 | };
326 | /* End XCConfigurationList section */
327 |
328 | /* Begin XCVersionGroup section */
329 | ADFBFA4D1F60396C00B07F35 /* ToodleDo.xcdatamodeld */ = {
330 | isa = XCVersionGroup;
331 | children = (
332 | ADFBFA4E1F60396C00B07F35 /* ToodleDo.xcdatamodel */,
333 | );
334 | currentVersion = ADFBFA4E1F60396C00B07F35 /* ToodleDo.xcdatamodel */;
335 | path = ToodleDo.xcdatamodeld;
336 | sourceTree = "";
337 | versionGroupType = wrapper.xcdatamodel;
338 | };
339 | /* End XCVersionGroup section */
340 | };
341 | rootObject = ADFBFA3B1F60396C00B07F35 /* Project object */;
342 | }
343 |
--------------------------------------------------------------------------------