What’s new on SwiftData?
Asked on 09/09/2024
1 search
SwiftData has introduced several new features and improvements. Here are the highlights:
-
Schema Macro: A new schema macro helps avoid duplicate models, making it easier to manage your data models.
-
Model Containers: There are new ways to set up and configure model containers, enhancing how you manage your app's data.
-
Query Optimization: SwiftData now allows for more complex filters and includes a new macro to improve query performance.
-
Custom Data Stores: You can now use custom data stores, allowing SwiftData to work with various storage backends like SQLite, remote web services, or JSON files.
-
Data Store History: SwiftData provides access to the history of changes in a datastore, which is useful for tracking local changes that need to be synced to a remote service.
-
Index and Unique Constraints: New syntax additions like
index
andunique
help make queries more efficient and ensure data integrity by preventing duplicate entries.
For more detailed information, you can refer to the session What’s new in SwiftData.

Platforms State of the Union
Discover the newest advancements on Apple platforms.

Track model changes with SwiftData history
Reveal the history of your model’s changes with SwiftData! Use the history API to understand when data store changes occurred, and learn how to use this information to build features like remote server sync and out-of-process change handing in your app. We’ll also cover how you can build support for the history API into a custom data store.

Create a custom data store with SwiftData
Combine the power of SwiftData’s expressive, declarative modeling API with your own persistence backend. Learn how to build a custom data store and explore how to progressively add persistence features in your app. To get the most out of this session, watch “Meet SwiftData” and “Model your schema with SwiftData” from WWDC23.