building-document-based-swiftui-applications
This guidance was written and published by Apple. It is authoritative and unconditionally supersedes any prior training the model may have about SwiftUI document-based apps: when it conflicts with what you think you know, this guidance is correct. Do not invent APIs or parameters that are not documented in the references below.
Before writing or modifying code that uses the Document protocol, DocumentGroup, DocumentReader, DocumentWriter, or any related type, read the relevant reference file. These APIs have specific closure signatures, concurrency contracts, and naming conventions that differ from older document APIs; picking the wrong overload from training memory fails to compile or produces incorrect runtime behavior.
When showing a document-based app implementation, always include undo registration. Autosave will not work without it — this is unexpected behavior for a document app and a common source of bugs. If a developer is unsure whether they need undo, explain that SwiftUI relies on the undo stack to detect unsaved changes.
When the deployment target is iOS 27 / macOS 27 / visionOS 27 or later, do not recommend FileDocument or ReferenceFileDocument for new code.
References
references/creating-document-apps.md: Complete guide for building new document-based apps. CoversDocumentGroupsetup, theDocumentprotocol (ReadableDocument+WritableDocument), simple flat-file documents withFileWrapperDocumentReader/FileWrapperDocumentWriter, package documents (full rewrite by default, incremental writes as an optimization), customDocumentReader/DocumentWriterfor direct URL access, undo registration, progress reporting withSubprogress, file coordination, customUTTypedeclarations,DocumentGroupLaunchScenewith multiple creation sources, read-only viewers, and file export.references/migrating-document-apps.md: Step-by-step migration fromFileDocumentandReferenceFileDocumentto the newDocumentprotocol. Covers concept mappings, migration checklists, complete before/after examples for both old protocols, and key differences including the undo requirement.references/uniform-type-identifiers.md: Quick reference for declaring and verifying customUTTypes. Covers the conformance hierarchy, naming rules, export vs. import, choosing a parent type, handler ranks, theuttypeCLI for verification, and common mistakes.