Hi all,
I've been playing with the new SwiftUI templates and am confused about using the new FileDocument API.
The docs state you should use a value type and that read/write will be threaded.
My app uses an SQLite database for data management. It does read/write incrementally without explicit save points.
It also doesn't read the file into memory, but queries it as needed.
What would be the correct way to handle this with SwiftUI?
Should I fake reading the file on open and never report any changes to save?
Thank you.
I've been playing with the new SwiftUI templates and am confused about using the new FileDocument API.
The docs state you should use a value type and that read/write will be threaded.
My app uses an SQLite database for data management. It does read/write incrementally without explicit save points.
It also doesn't read the file into memory, but queries it as needed.
What would be the correct way to handle this with SwiftUI?
Should I fake reading the file on open and never report any changes to save?
Thank you.