Reader small image

You're reading from  SwiftUI Cookbook - Third Edition

Product typeBook
Published inDec 2023
Reading LevelIntermediate
PublisherPackt
ISBN-139781805121732
Edition3rd Edition
Languages
Tools
Concepts
Right arrow
Author (1)
Juan C. Catalan
Juan C. Catalan
author image
Juan C. Catalan

Juan C. Catalan is a software engineer with more than 18 years of professional experience. He started mobile development back in the days of iOS 3. Juan has worked as a professional iOS developer in many industries, including medical devices, financial services, real estate, document management, fleet tracking and industrial automation. He has contributed to more than 30 published apps in the App Store, some of them with millions of users. Juan gives back to the iOS development community with technical talks, mentoring developers, reviewing technical books and now as a book author. He lives in Austin, Texas, with his wife Donna, where they spend time with their kids.
Read more about Juan C. Catalan

Right arrow

Integrating Core Data with SwiftUI

If you’re familiar with iOS development, over the years, you may have found different ways of using Core Data in your apps from an architectural point of view. For example, Apple, before iOS 14, provided Xcode templates that created the Core Data containers in the AppDelegate. Other developers prefer to wrap Core Data inside custom classes, abstracting Core Data entirely, while encapsulating the whole Core Data Stack and its managed objects in a module. By abstracting the persistence code, it will be easy to move to another persistence solution, such as Realm (https://realm.io), if needed.SwiftUI's integration, however, points firmly in one direction: Create the container when the app starts, inject it into the Environment, and then use it to fetch data or make changes.When building a new app with Xcode, you can check the Use Core Data checkbox so that Xcode creates a template that injects the Core Data stack in the most efficient way possible...

lock icon
The rest of the page is locked
Previous PageNext Chapter
You have been reading a chapter from
SwiftUI Cookbook - Third Edition
Published in: Dec 2023Publisher: PacktISBN-13: 9781805121732

Author (1)

author image
Juan C. Catalan

Juan C. Catalan is a software engineer with more than 18 years of professional experience. He started mobile development back in the days of iOS 3. Juan has worked as a professional iOS developer in many industries, including medical devices, financial services, real estate, document management, fleet tracking and industrial automation. He has contributed to more than 30 published apps in the App Store, some of them with millions of users. Juan gives back to the iOS development community with technical talks, mentoring developers, reviewing technical books and now as a book author. He lives in Austin, Texas, with his wife Donna, where they spend time with their kids.
Read more about Juan C. Catalan