With many frameworks, there''s a point in the learning curve where you stop fearing the mountain of knowledge to learn and just enjoy the power to play and develop. For some reason many developers feel that point seems harder to reach with Core Data. And that''s unjustified-Core Data is a great framework that with powerful, optimized tools right out of the box. So it''s time you stopped fearing the journey and took your steps further out into the world of enjoying the power of Core Data.
With what you learn, you can build apps to deal with a large amount of data and complex relationships in intelligent and efficient ways. Core Data has many secrets underneath the hood that can power up your persistent store like
Table of ContentsChapter 1: Introduction
• Importance of Core Data as a persistent store
• How to read this book
Chapter 2: Core Data Stack and Setup
• The Core Data Framework
• Data Model
• Persistent Store
• Container
• Holding the stack
Chapter 3: Data Model
• The different types
• Relationships
• Fetched Properties
• Parent Entities
• Deletion
• Code Generation
Chapter 4: Working with Contexts
• Contexts
• Create Objects
• Delete, Update, and Fetching
• Sorting
Chapter 5: Advanced Predicates
• Compound
• INCLUDE
• String Queries
• Sorting
• Relationships Queries
• Subquery
• Regular Expressions
Chapter 6: Implemention
• Converting to structs
• UIFetchController
• Undo
• Generics and Wrappers
• Combine and SwiftUI
• Saving files
Chapter 7: Performance
• Multi Threading
• Debugging
• Faulting
• Fetching Optimisation
o Limits
Chapter 8: Core Data Underneath
• Faulting
• Snapshotting
• Sqlite File Scheme
Chapter 9: Maintenance
• Migrations and Versioning
o Light migration
o Heavyweight migration
• Unit Testing
Chapter 10: Sharing
• iCloud Sync
• Extensions
• Swift Package
Audience: Advanced