├── CoreDataToDo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── arlan914.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── arlan914.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── CoreDataToDo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── iPhone_20@2x.png │ │ ├── iPhone_20pt@3x.png │ │ ├── iPhone_29pt.png │ │ ├── iPhone_29pt@2x.png │ │ ├── iPhone_29pt@3x.png │ │ ├── iPhone_40pt@2x.png │ │ ├── iPhone_40pt@3x.png │ │ ├── iPhone_60pt@2x.png │ │ └── iPhone_60pt@3x.png │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── ContentView.swift ├── CoreDataToDo.xcdatamodeld │ ├── .xccurrentversion │ └── CoreDataToDo.xcdatamodel │ │ └── contents ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift ├── ToDoItem+CoreDataClass.swift ├── ToDoItem+CoreDataProperties.swift └── TodoItemView.swift ├── Preview └── CoreData_Preview.gif └── README.md /CoreDataToDo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | D4348BB3253D364E00270D25 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4348BB2253D364E00270D25 /* AppDelegate.swift */; }; 11 | D4348BB5253D364E00270D25 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4348BB4253D364E00270D25 /* SceneDelegate.swift */; }; 12 | D4348BB7253D364E00270D25 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4348BB6253D364E00270D25 /* ContentView.swift */; }; 13 | D4348BBA253D364E00270D25 /* CoreDataToDo.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = D4348BB8253D364E00270D25 /* CoreDataToDo.xcdatamodeld */; }; 14 | D4348BBC253D365200270D25 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D4348BBB253D365200270D25 /* Assets.xcassets */; }; 15 | D4348BBF253D365200270D25 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D4348BBE253D365200270D25 /* Preview Assets.xcassets */; }; 16 | D4348BC2253D365200270D25 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D4348BC0253D365200270D25 /* LaunchScreen.storyboard */; }; 17 | D4348BCC253D36CA00270D25 /* ToDoItem+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4348BCA253D36CA00270D25 /* ToDoItem+CoreDataClass.swift */; }; 18 | D4348BCD253D36CA00270D25 /* ToDoItem+CoreDataProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4348BCB253D36CA00270D25 /* ToDoItem+CoreDataProperties.swift */; }; 19 | D4348BD0253D447800270D25 /* TodoItemView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4348BCF253D447800270D25 /* TodoItemView.swift */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXFileReference section */ 23 | D4348BAF253D364E00270D25 /* CoreDataToDo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CoreDataToDo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 24 | D4348BB2253D364E00270D25 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 25 | D4348BB4253D364E00270D25 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; 26 | D4348BB6253D364E00270D25 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 27 | D4348BB9253D364E00270D25 /* CoreDataToDo.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = CoreDataToDo.xcdatamodel; sourceTree = ""; }; 28 | D4348BBB253D365200270D25 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 29 | D4348BBE253D365200270D25 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 30 | D4348BC1253D365200270D25 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 31 | D4348BC3253D365200270D25 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 32 | D4348BCA253D36CA00270D25 /* ToDoItem+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ToDoItem+CoreDataClass.swift"; sourceTree = ""; }; 33 | D4348BCB253D36CA00270D25 /* ToDoItem+CoreDataProperties.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ToDoItem+CoreDataProperties.swift"; sourceTree = ""; }; 34 | D4348BCF253D447800270D25 /* TodoItemView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TodoItemView.swift; sourceTree = ""; }; 35 | /* End PBXFileReference section */ 36 | 37 | /* Begin PBXFrameworksBuildPhase section */ 38 | D4348BAC253D364E00270D25 /* Frameworks */ = { 39 | isa = PBXFrameworksBuildPhase; 40 | buildActionMask = 2147483647; 41 | files = ( 42 | ); 43 | runOnlyForDeploymentPostprocessing = 0; 44 | }; 45 | /* End PBXFrameworksBuildPhase section */ 46 | 47 | /* Begin PBXGroup section */ 48 | D4348BA6253D364E00270D25 = { 49 | isa = PBXGroup; 50 | children = ( 51 | D4348BB1253D364E00270D25 /* CoreDataToDo */, 52 | D4348BB0253D364E00270D25 /* Products */, 53 | ); 54 | sourceTree = ""; 55 | }; 56 | D4348BB0253D364E00270D25 /* Products */ = { 57 | isa = PBXGroup; 58 | children = ( 59 | D4348BAF253D364E00270D25 /* CoreDataToDo.app */, 60 | ); 61 | name = Products; 62 | sourceTree = ""; 63 | }; 64 | D4348BB1253D364E00270D25 /* CoreDataToDo */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | D4348BB2253D364E00270D25 /* AppDelegate.swift */, 68 | D4348BB4253D364E00270D25 /* SceneDelegate.swift */, 69 | D4348BB6253D364E00270D25 /* ContentView.swift */, 70 | D4348BCF253D447800270D25 /* TodoItemView.swift */, 71 | D4348BBB253D365200270D25 /* Assets.xcassets */, 72 | D4348BC0253D365200270D25 /* LaunchScreen.storyboard */, 73 | D4348BC3253D365200270D25 /* Info.plist */, 74 | D4348BCA253D36CA00270D25 /* ToDoItem+CoreDataClass.swift */, 75 | D4348BCB253D36CA00270D25 /* ToDoItem+CoreDataProperties.swift */, 76 | D4348BB8253D364E00270D25 /* CoreDataToDo.xcdatamodeld */, 77 | D4348BBD253D365200270D25 /* Preview Content */, 78 | ); 79 | path = CoreDataToDo; 80 | sourceTree = ""; 81 | }; 82 | D4348BBD253D365200270D25 /* Preview Content */ = { 83 | isa = PBXGroup; 84 | children = ( 85 | D4348BBE253D365200270D25 /* Preview Assets.xcassets */, 86 | ); 87 | path = "Preview Content"; 88 | sourceTree = ""; 89 | }; 90 | /* End PBXGroup section */ 91 | 92 | /* Begin PBXNativeTarget section */ 93 | D4348BAE253D364E00270D25 /* CoreDataToDo */ = { 94 | isa = PBXNativeTarget; 95 | buildConfigurationList = D4348BC6253D365200270D25 /* Build configuration list for PBXNativeTarget "CoreDataToDo" */; 96 | buildPhases = ( 97 | D4348BAB253D364E00270D25 /* Sources */, 98 | D4348BAC253D364E00270D25 /* Frameworks */, 99 | D4348BAD253D364E00270D25 /* Resources */, 100 | ); 101 | buildRules = ( 102 | ); 103 | dependencies = ( 104 | ); 105 | name = CoreDataToDo; 106 | productName = CoreDataToDo; 107 | productReference = D4348BAF253D364E00270D25 /* CoreDataToDo.app */; 108 | productType = "com.apple.product-type.application"; 109 | }; 110 | /* End PBXNativeTarget section */ 111 | 112 | /* Begin PBXProject section */ 113 | D4348BA7253D364E00270D25 /* Project object */ = { 114 | isa = PBXProject; 115 | attributes = { 116 | LastSwiftUpdateCheck = 1200; 117 | LastUpgradeCheck = 1200; 118 | TargetAttributes = { 119 | D4348BAE253D364E00270D25 = { 120 | CreatedOnToolsVersion = 12.0.1; 121 | }; 122 | }; 123 | }; 124 | buildConfigurationList = D4348BAA253D364E00270D25 /* Build configuration list for PBXProject "CoreDataToDo" */; 125 | compatibilityVersion = "Xcode 9.3"; 126 | developmentRegion = en; 127 | hasScannedForEncodings = 0; 128 | knownRegions = ( 129 | en, 130 | Base, 131 | ); 132 | mainGroup = D4348BA6253D364E00270D25; 133 | productRefGroup = D4348BB0253D364E00270D25 /* Products */; 134 | projectDirPath = ""; 135 | projectRoot = ""; 136 | targets = ( 137 | D4348BAE253D364E00270D25 /* CoreDataToDo */, 138 | ); 139 | }; 140 | /* End PBXProject section */ 141 | 142 | /* Begin PBXResourcesBuildPhase section */ 143 | D4348BAD253D364E00270D25 /* Resources */ = { 144 | isa = PBXResourcesBuildPhase; 145 | buildActionMask = 2147483647; 146 | files = ( 147 | D4348BC2253D365200270D25 /* LaunchScreen.storyboard in Resources */, 148 | D4348BBF253D365200270D25 /* Preview Assets.xcassets in Resources */, 149 | D4348BBC253D365200270D25 /* Assets.xcassets in Resources */, 150 | ); 151 | runOnlyForDeploymentPostprocessing = 0; 152 | }; 153 | /* End PBXResourcesBuildPhase section */ 154 | 155 | /* Begin PBXSourcesBuildPhase section */ 156 | D4348BAB253D364E00270D25 /* Sources */ = { 157 | isa = PBXSourcesBuildPhase; 158 | buildActionMask = 2147483647; 159 | files = ( 160 | D4348BB3253D364E00270D25 /* AppDelegate.swift in Sources */, 161 | D4348BB5253D364E00270D25 /* SceneDelegate.swift in Sources */, 162 | D4348BBA253D364E00270D25 /* CoreDataToDo.xcdatamodeld in Sources */, 163 | D4348BCC253D36CA00270D25 /* ToDoItem+CoreDataClass.swift in Sources */, 164 | D4348BCD253D36CA00270D25 /* ToDoItem+CoreDataProperties.swift in Sources */, 165 | D4348BD0253D447800270D25 /* TodoItemView.swift in Sources */, 166 | D4348BB7253D364E00270D25 /* ContentView.swift in Sources */, 167 | ); 168 | runOnlyForDeploymentPostprocessing = 0; 169 | }; 170 | /* End PBXSourcesBuildPhase section */ 171 | 172 | /* Begin PBXVariantGroup section */ 173 | D4348BC0253D365200270D25 /* LaunchScreen.storyboard */ = { 174 | isa = PBXVariantGroup; 175 | children = ( 176 | D4348BC1253D365200270D25 /* Base */, 177 | ); 178 | name = LaunchScreen.storyboard; 179 | sourceTree = ""; 180 | }; 181 | /* End PBXVariantGroup section */ 182 | 183 | /* Begin XCBuildConfiguration section */ 184 | D4348BC4253D365200270D25 /* Debug */ = { 185 | isa = XCBuildConfiguration; 186 | buildSettings = { 187 | ALWAYS_SEARCH_USER_PATHS = NO; 188 | CLANG_ANALYZER_NONNULL = YES; 189 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 190 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 191 | CLANG_CXX_LIBRARY = "libc++"; 192 | CLANG_ENABLE_MODULES = YES; 193 | CLANG_ENABLE_OBJC_ARC = YES; 194 | CLANG_ENABLE_OBJC_WEAK = YES; 195 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 196 | CLANG_WARN_BOOL_CONVERSION = YES; 197 | CLANG_WARN_COMMA = YES; 198 | CLANG_WARN_CONSTANT_CONVERSION = YES; 199 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 200 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 201 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 202 | CLANG_WARN_EMPTY_BODY = YES; 203 | CLANG_WARN_ENUM_CONVERSION = YES; 204 | CLANG_WARN_INFINITE_RECURSION = YES; 205 | CLANG_WARN_INT_CONVERSION = YES; 206 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 207 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 208 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 209 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 210 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 211 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 212 | CLANG_WARN_STRICT_PROTOTYPES = YES; 213 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 214 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 215 | CLANG_WARN_UNREACHABLE_CODE = YES; 216 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 217 | COPY_PHASE_STRIP = NO; 218 | DEBUG_INFORMATION_FORMAT = dwarf; 219 | ENABLE_STRICT_OBJC_MSGSEND = YES; 220 | ENABLE_TESTABILITY = YES; 221 | GCC_C_LANGUAGE_STANDARD = gnu11; 222 | GCC_DYNAMIC_NO_PIC = NO; 223 | GCC_NO_COMMON_BLOCKS = YES; 224 | GCC_OPTIMIZATION_LEVEL = 0; 225 | GCC_PREPROCESSOR_DEFINITIONS = ( 226 | "DEBUG=1", 227 | "$(inherited)", 228 | ); 229 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 230 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 231 | GCC_WARN_UNDECLARED_SELECTOR = YES; 232 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 233 | GCC_WARN_UNUSED_FUNCTION = YES; 234 | GCC_WARN_UNUSED_VARIABLE = YES; 235 | IPHONEOS_DEPLOYMENT_TARGET = 14.0; 236 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 237 | MTL_FAST_MATH = YES; 238 | ONLY_ACTIVE_ARCH = YES; 239 | SDKROOT = iphoneos; 240 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 241 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 242 | }; 243 | name = Debug; 244 | }; 245 | D4348BC5253D365200270D25 /* Release */ = { 246 | isa = XCBuildConfiguration; 247 | buildSettings = { 248 | ALWAYS_SEARCH_USER_PATHS = NO; 249 | CLANG_ANALYZER_NONNULL = YES; 250 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 251 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 252 | CLANG_CXX_LIBRARY = "libc++"; 253 | CLANG_ENABLE_MODULES = YES; 254 | CLANG_ENABLE_OBJC_ARC = YES; 255 | CLANG_ENABLE_OBJC_WEAK = YES; 256 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 257 | CLANG_WARN_BOOL_CONVERSION = YES; 258 | CLANG_WARN_COMMA = YES; 259 | CLANG_WARN_CONSTANT_CONVERSION = YES; 260 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 261 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 262 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 263 | CLANG_WARN_EMPTY_BODY = YES; 264 | CLANG_WARN_ENUM_CONVERSION = YES; 265 | CLANG_WARN_INFINITE_RECURSION = YES; 266 | CLANG_WARN_INT_CONVERSION = YES; 267 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 268 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 269 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 270 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 271 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 272 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 273 | CLANG_WARN_STRICT_PROTOTYPES = YES; 274 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 275 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 276 | CLANG_WARN_UNREACHABLE_CODE = YES; 277 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 278 | COPY_PHASE_STRIP = NO; 279 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 280 | ENABLE_NS_ASSERTIONS = NO; 281 | ENABLE_STRICT_OBJC_MSGSEND = YES; 282 | GCC_C_LANGUAGE_STANDARD = gnu11; 283 | GCC_NO_COMMON_BLOCKS = YES; 284 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 285 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 286 | GCC_WARN_UNDECLARED_SELECTOR = YES; 287 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 288 | GCC_WARN_UNUSED_FUNCTION = YES; 289 | GCC_WARN_UNUSED_VARIABLE = YES; 290 | IPHONEOS_DEPLOYMENT_TARGET = 14.0; 291 | MTL_ENABLE_DEBUG_INFO = NO; 292 | MTL_FAST_MATH = YES; 293 | SDKROOT = iphoneos; 294 | SWIFT_COMPILATION_MODE = wholemodule; 295 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 296 | VALIDATE_PRODUCT = YES; 297 | }; 298 | name = Release; 299 | }; 300 | D4348BC7253D365200270D25 /* Debug */ = { 301 | isa = XCBuildConfiguration; 302 | buildSettings = { 303 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 304 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 305 | CODE_SIGN_STYLE = Automatic; 306 | DEVELOPMENT_ASSET_PATHS = "\"CoreDataToDo/Preview Content\""; 307 | DEVELOPMENT_TEAM = 8YMG4SKZ64; 308 | ENABLE_PREVIEWS = YES; 309 | INFOPLIST_FILE = CoreDataToDo/Info.plist; 310 | LD_RUNPATH_SEARCH_PATHS = ( 311 | "$(inherited)", 312 | "@executable_path/Frameworks", 313 | ); 314 | PRODUCT_BUNDLE_IDENTIFIER = study.self.CoreDataToDo; 315 | PRODUCT_NAME = "$(TARGET_NAME)"; 316 | SWIFT_VERSION = 5.0; 317 | TARGETED_DEVICE_FAMILY = "1,2"; 318 | }; 319 | name = Debug; 320 | }; 321 | D4348BC8253D365200270D25 /* Release */ = { 322 | isa = XCBuildConfiguration; 323 | buildSettings = { 324 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 325 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 326 | CODE_SIGN_STYLE = Automatic; 327 | DEVELOPMENT_ASSET_PATHS = "\"CoreDataToDo/Preview Content\""; 328 | DEVELOPMENT_TEAM = 8YMG4SKZ64; 329 | ENABLE_PREVIEWS = YES; 330 | INFOPLIST_FILE = CoreDataToDo/Info.plist; 331 | LD_RUNPATH_SEARCH_PATHS = ( 332 | "$(inherited)", 333 | "@executable_path/Frameworks", 334 | ); 335 | PRODUCT_BUNDLE_IDENTIFIER = study.self.CoreDataToDo; 336 | PRODUCT_NAME = "$(TARGET_NAME)"; 337 | SWIFT_VERSION = 5.0; 338 | TARGETED_DEVICE_FAMILY = "1,2"; 339 | }; 340 | name = Release; 341 | }; 342 | /* End XCBuildConfiguration section */ 343 | 344 | /* Begin XCConfigurationList section */ 345 | D4348BAA253D364E00270D25 /* Build configuration list for PBXProject "CoreDataToDo" */ = { 346 | isa = XCConfigurationList; 347 | buildConfigurations = ( 348 | D4348BC4253D365200270D25 /* Debug */, 349 | D4348BC5253D365200270D25 /* Release */, 350 | ); 351 | defaultConfigurationIsVisible = 0; 352 | defaultConfigurationName = Release; 353 | }; 354 | D4348BC6253D365200270D25 /* Build configuration list for PBXNativeTarget "CoreDataToDo" */ = { 355 | isa = XCConfigurationList; 356 | buildConfigurations = ( 357 | D4348BC7253D365200270D25 /* Debug */, 358 | D4348BC8253D365200270D25 /* Release */, 359 | ); 360 | defaultConfigurationIsVisible = 0; 361 | defaultConfigurationName = Release; 362 | }; 363 | /* End XCConfigurationList section */ 364 | 365 | /* Begin XCVersionGroup section */ 366 | D4348BB8253D364E00270D25 /* CoreDataToDo.xcdatamodeld */ = { 367 | isa = XCVersionGroup; 368 | children = ( 369 | D4348BB9253D364E00270D25 /* CoreDataToDo.xcdatamodel */, 370 | ); 371 | currentVersion = D4348BB9253D364E00270D25 /* CoreDataToDo.xcdatamodel */; 372 | path = CoreDataToDo.xcdatamodeld; 373 | sourceTree = ""; 374 | versionGroupType = wrapper.xcdatamodel; 375 | }; 376 | /* End XCVersionGroup section */ 377 | }; 378 | rootObject = D4348BA7253D364E00270D25 /* Project object */; 379 | } 380 | -------------------------------------------------------------------------------- /CoreDataToDo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CoreDataToDo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CoreDataToDo.xcodeproj/project.xcworkspace/xcuserdata/arlan914.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo.xcodeproj/project.xcworkspace/xcuserdata/arlan914.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CoreDataToDo.xcodeproj/xcuserdata/arlan914.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /CoreDataToDo.xcodeproj/xcuserdata/arlan914.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | CoreDataToDo.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CoreDataToDo/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // CoreDataToDo 4 | // 5 | // Created by Arlan on 10/19/20. 6 | // 7 | 8 | import UIKit 9 | import CoreData 10 | 11 | @main 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | 15 | 16 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 17 | // Override point for customization after application launch. 18 | return true 19 | } 20 | 21 | // MARK: UISceneSession Lifecycle 22 | 23 | func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { 24 | // Called when a new scene session is being created. 25 | // Use this method to select a configuration to create the new scene with. 26 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 27 | } 28 | 29 | func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { 30 | // Called when the user discards a scene session. 31 | // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. 32 | // Use this method to release any resources that were specific to the discarded scenes, as they will not return. 33 | } 34 | 35 | // MARK: - Core Data stack 36 | 37 | lazy var persistentContainer: NSPersistentContainer = { 38 | /* 39 | The persistent container for the application. This implementation 40 | creates and returns a container, having loaded the store for the 41 | application to it. This property is optional since there are legitimate 42 | error conditions that could cause the creation of the store to fail. 43 | */ 44 | let container = NSPersistentContainer(name: "CoreDataToDo") 45 | container.loadPersistentStores(completionHandler: { (storeDescription, error) in 46 | if let error = error as NSError? { 47 | // Replace this implementation with code to handle the error appropriately. 48 | // 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. 49 | 50 | /* 51 | Typical reasons for an error here include: 52 | * The parent directory does not exist, cannot be created, or disallows writing. 53 | * The persistent store is not accessible, due to permissions or data protection when the device is locked. 54 | * The device is out of space. 55 | * The store could not be migrated to the current model version. 56 | Check the error message to determine what the actual problem was. 57 | */ 58 | fatalError("Unresolved error \(error), \(error.userInfo)") 59 | } 60 | }) 61 | return container 62 | }() 63 | 64 | // MARK: - Core Data Saving support 65 | 66 | func saveContext () { 67 | let context = persistentContainer.viewContext 68 | if context.hasChanges { 69 | do { 70 | try context.save() 71 | } catch { 72 | // Replace this implementation with code to handle the error appropriately. 73 | // 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. 74 | let nserror = error as NSError 75 | fatalError("Unresolved error \(nserror), \(nserror.userInfo)") 76 | } 77 | } 78 | } 79 | 80 | } 81 | 82 | -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "iPhone_20@2x.png", 5 | "idiom" : "iphone", 6 | "scale" : "2x", 7 | "size" : "20x20" 8 | }, 9 | { 10 | "filename" : "iPhone_20pt@3x.png", 11 | "idiom" : "iphone", 12 | "scale" : "3x", 13 | "size" : "20x20" 14 | }, 15 | { 16 | "filename" : "iPhone_29pt.png", 17 | "idiom" : "iphone", 18 | "scale" : "1x", 19 | "size" : "29x29" 20 | }, 21 | { 22 | "filename" : "iPhone_29pt@2x.png", 23 | "idiom" : "iphone", 24 | "scale" : "2x", 25 | "size" : "29x29" 26 | }, 27 | { 28 | "filename" : "iPhone_29pt@3x.png", 29 | "idiom" : "iphone", 30 | "scale" : "3x", 31 | "size" : "29x29" 32 | }, 33 | { 34 | "filename" : "iPhone_40pt@2x.png", 35 | "idiom" : "iphone", 36 | "scale" : "2x", 37 | "size" : "40x40" 38 | }, 39 | { 40 | "filename" : "iPhone_40pt@3x.png", 41 | "idiom" : "iphone", 42 | "scale" : "3x", 43 | "size" : "40x40" 44 | }, 45 | { 46 | "filename" : "iPhone_60pt@2x.png", 47 | "idiom" : "iphone", 48 | "scale" : "2x", 49 | "size" : "60x60" 50 | }, 51 | { 52 | "filename" : "iPhone_60pt@3x.png", 53 | "idiom" : "iphone", 54 | "scale" : "3x", 55 | "size" : "60x60" 56 | }, 57 | { 58 | "idiom" : "ipad", 59 | "scale" : "1x", 60 | "size" : "20x20" 61 | }, 62 | { 63 | "idiom" : "ipad", 64 | "scale" : "2x", 65 | "size" : "20x20" 66 | }, 67 | { 68 | "idiom" : "ipad", 69 | "scale" : "1x", 70 | "size" : "29x29" 71 | }, 72 | { 73 | "idiom" : "ipad", 74 | "scale" : "2x", 75 | "size" : "29x29" 76 | }, 77 | { 78 | "idiom" : "ipad", 79 | "scale" : "1x", 80 | "size" : "40x40" 81 | }, 82 | { 83 | "idiom" : "ipad", 84 | "scale" : "2x", 85 | "size" : "40x40" 86 | }, 87 | { 88 | "idiom" : "ipad", 89 | "scale" : "1x", 90 | "size" : "76x76" 91 | }, 92 | { 93 | "idiom" : "ipad", 94 | "scale" : "2x", 95 | "size" : "76x76" 96 | }, 97 | { 98 | "idiom" : "ipad", 99 | "scale" : "2x", 100 | "size" : "83.5x83.5" 101 | }, 102 | { 103 | "idiom" : "ios-marketing", 104 | "scale" : "1x", 105 | "size" : "1024x1024" 106 | } 107 | ], 108 | "info" : { 109 | "author" : "xcode", 110 | "version" : 1 111 | } 112 | } 113 | -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_20@2x.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_20pt@3x.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_29pt.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_29pt@2x.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_29pt@3x.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_40pt@2x.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_40pt@3x.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_60pt@2x.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/CoreDataToDo/Assets.xcassets/AppIcon.appiconset/iPhone_60pt@3x.png -------------------------------------------------------------------------------- /CoreDataToDo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CoreDataToDo/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 | -------------------------------------------------------------------------------- /CoreDataToDo/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // CoreDataToDo 4 | // 5 | // Created by Arlan on 10/19/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct ContentView: View { 11 | 12 | @Environment(\.managedObjectContext) var managedObjectContext 13 | @FetchRequest(fetchRequest: ToDoItem.getAllToDoItems()) var toDoItems:FetchedResults 14 | 15 | @State private var newTodoItem = "" 16 | 17 | var body: some View { 18 | NavigationView{ 19 | List{ 20 | Section(header: Text("What's next?")){ 21 | HStack{ 22 | TextField("New Item", text: self.$newTodoItem) 23 | Button(action: { 24 | let toDoItem = ToDoItem(context: self.managedObjectContext) 25 | toDoItem.title = self.newTodoItem 26 | toDoItem.createdAt = Date() 27 | do{ 28 | try self.managedObjectContext.save() 29 | } catch { 30 | print(error) 31 | } 32 | 33 | self.newTodoItem = "" 34 | 35 | }){ 36 | Image(systemName: "plus.circle.fill").foregroundColor(.green) 37 | .imageScale(.large) 38 | } 39 | } 40 | }.font(.headline) 41 | Section(header: Text("ToDo's")){ 42 | ForEach(self.toDoItems){ todoitem in 43 | TodoItemView(title: todoitem.title!, createdAt: "\(todoitem.createdAt!)") 44 | 45 | }.onDelete(perform: { indexSet in 46 | let deleteItem = self.toDoItems[indexSet.first!] 47 | self.managedObjectContext.delete(deleteItem) 48 | 49 | do{ 50 | try self.managedObjectContext.save() 51 | } catch { 52 | print(error) 53 | } 54 | }) 55 | } 56 | }.navigationBarTitle(Text("My List")) 57 | .navigationBarItems(trailing: EditButton()) 58 | } 59 | 60 | } 61 | } 62 | 63 | struct ContentView_Previews: PreviewProvider { 64 | static var previews: some View { 65 | ContentView() 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /CoreDataToDo/CoreDataToDo.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | CoreDataToDo.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /CoreDataToDo/CoreDataToDo.xcdatamodeld/CoreDataToDo.xcdatamodel/contents: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /CoreDataToDo/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 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UIApplicationSceneManifest 24 | 25 | UIApplicationSupportsMultipleScenes 26 | 27 | UISceneConfigurations 28 | 29 | UIWindowSceneSessionRoleApplication 30 | 31 | 32 | UISceneConfigurationName 33 | Default Configuration 34 | UISceneDelegateClassName 35 | $(PRODUCT_MODULE_NAME).SceneDelegate 36 | 37 | 38 | 39 | 40 | UIApplicationSupportsIndirectInputEvents 41 | 42 | UILaunchStoryboardName 43 | LaunchScreen 44 | UIRequiredDeviceCapabilities 45 | 46 | armv7 47 | 48 | UISupportedInterfaceOrientations 49 | 50 | UIInterfaceOrientationPortrait 51 | UIInterfaceOrientationLandscapeLeft 52 | UIInterfaceOrientationLandscapeRight 53 | 54 | UISupportedInterfaceOrientations~ipad 55 | 56 | UIInterfaceOrientationPortrait 57 | UIInterfaceOrientationPortraitUpsideDown 58 | UIInterfaceOrientationLandscapeLeft 59 | UIInterfaceOrientationLandscapeRight 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /CoreDataToDo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /CoreDataToDo/SceneDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SceneDelegate.swift 3 | // CoreDataToDo 4 | // 5 | // Created by Arlan on 10/19/20. 6 | // 7 | 8 | import UIKit 9 | import SwiftUI 10 | 11 | class SceneDelegate: UIResponder, UIWindowSceneDelegate { 12 | 13 | var window: UIWindow? 14 | 15 | 16 | func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { 17 | // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. 18 | // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. 19 | // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). 20 | 21 | // Get the managed object context from the shared persistent container. 22 | let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext 23 | 24 | // Create the SwiftUI view and set the context as the value for the managedObjectContext environment keyPath. 25 | // Add `@Environment(\.managedObjectContext)` in the views that will need the context. 26 | let contentView = ContentView().environment(\.managedObjectContext, context) 27 | 28 | // Use a UIHostingController as window root view controller. 29 | if let windowScene = scene as? UIWindowScene { 30 | let window = UIWindow(windowScene: windowScene) 31 | window.rootViewController = UIHostingController(rootView: contentView) 32 | self.window = window 33 | window.makeKeyAndVisible() 34 | } 35 | } 36 | 37 | func sceneDidDisconnect(_ scene: UIScene) { 38 | // Called as the scene is being released by the system. 39 | // This occurs shortly after the scene enters the background, or when its session is discarded. 40 | // Release any resources associated with this scene that can be re-created the next time the scene connects. 41 | // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). 42 | } 43 | 44 | func sceneDidBecomeActive(_ scene: UIScene) { 45 | // Called when the scene has moved from an inactive state to an active state. 46 | // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. 47 | } 48 | 49 | func sceneWillResignActive(_ scene: UIScene) { 50 | // Called when the scene will move from an active state to an inactive state. 51 | // This may occur due to temporary interruptions (ex. an incoming phone call). 52 | } 53 | 54 | func sceneWillEnterForeground(_ scene: UIScene) { 55 | // Called as the scene transitions from the background to the foreground. 56 | // Use this method to undo the changes made on entering the background. 57 | } 58 | 59 | func sceneDidEnterBackground(_ scene: UIScene) { 60 | // Called as the scene transitions from the foreground to the background. 61 | // Use this method to save data, release shared resources, and store enough scene-specific state information 62 | // to restore the scene back to its current state. 63 | 64 | // Save changes in the application's managed object context when the application transitions to the background. 65 | (UIApplication.shared.delegate as? AppDelegate)?.saveContext() 66 | } 67 | 68 | 69 | } 70 | 71 | -------------------------------------------------------------------------------- /CoreDataToDo/ToDoItem+CoreDataClass.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ToDoItem+CoreDataClass.swift 3 | // CoreDataToDo 4 | // 5 | // Created by Arlan on 10/19/20. 6 | // 7 | // 8 | 9 | import Foundation 10 | import CoreData 11 | 12 | 13 | public class ToDoItem: NSManagedObject, Identifiable { 14 | @NSManaged public var createdAt: Date? 15 | @NSManaged public var title: String? 16 | } 17 | -------------------------------------------------------------------------------- /CoreDataToDo/ToDoItem+CoreDataProperties.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ToDoItem+CoreDataProperties.swift 3 | // CoreDataToDo 4 | // 5 | // Created by Arlan on 10/19/20. 6 | // 7 | // 8 | 9 | import Foundation 10 | import CoreData 11 | 12 | 13 | 14 | extension ToDoItem { 15 | static func getAllToDoItems() -> NSFetchRequest { 16 | let request : NSFetchRequest = ToDoItem.fetchRequest() as! NSFetchRequest 17 | 18 | let sortDescriptor = NSSortDescriptor(key: "createdAt", ascending: true) 19 | 20 | request.sortDescriptors = [sortDescriptor] 21 | 22 | return request 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /CoreDataToDo/TodoItemView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TodoItemView.swift 3 | // CoreDataToDo 4 | // 5 | // Created by Arlan on 10/19/20. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct TodoItemView: View { 11 | var title:String = "" 12 | var createdAt:String = "" 13 | var body: some View { 14 | HStack{ 15 | VStack(alignment: .leading){ 16 | Text(title).font(.headline) 17 | Text(createdAt).font(.caption) 18 | 19 | } 20 | } 21 | } 22 | } 23 | 24 | struct TodoItemView_Previews: PreviewProvider { 25 | static var previews: some View { 26 | TodoItemView() 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Preview/CoreData_Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arllashka/CoreDataToDo/1e4e456a00384be59a8095fba217b326df0b8094/Preview/CoreData_Preview.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CoreDataToDo 2 | To-Do List Using CoreData Framework 3 | ## Description 4 | 5 | This is a simple To-do List for iOS but it also can manage and save the items in List with help of CoreData Framework. 6 | 7 | ### Preview 8 | ![Preview](Preview/CoreData_Preview.gif) 9 | --------------------------------------------------------------------------------