Core Data: Beyond the Basics

Jul 26 2022 · Swift 5.5, iOS 15, Xcode 13.3.1

Part 2: Advanced Core Data

14. Asynchronously Loading Launches

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 13. Introduction Next episode: 15. Saving Launches with Batch Operations

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 14. Asynchronously Loading Launches

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

Until now in the course, you’ve been dealing with small amounts of data that gets inputted by the user. Easy right? Well, Core Data can also handle large amount of data that you want to store all at once. In fact, this is one of the reasons you might want to use a persistence mechanism such as Core Data in your app - large amounts of data with a non-trivial relationship between entities.

private enum CodingKeys: String, CodingKey {
	case reused
	case recoveryAttempt = "recovery_attempt"
	case recovered
	case ships
}