How to make sure SwiftData deletes objects when app terminates
SwiftData removes the specified model from the persistent storage during the next save operation. This doesn't happen when the app terminates, so you need to call save.


SwiftData removes the specified model from the persistent storage during the next save operation. This doesn't happen when the app terminates, so you need to call save.
SubscribeSwiftData removes the specified model from the persistent storage during the next save operation.
This doesn't happen when the app terminates, so you need to call save using code similar to the one below:
try modelContainer.mainContext.save()
To learn more about SwiftData, consult our guide below.
Looking to learn more about things you can do with SwiftData, Swift or XCode ?
Search our blog to find educational content on learning how to use SwiftData, Swift or XCode.