Update Changelog.md
A means of accessing the file system in a SwiftUI environment, conveniently.
Let’s assume you have a data type called ‘Project’.
struct Project: Codable, Equatable, Container { let name: String // See wiki/typical-implementation }
By conforming to the above protocols, you may now create Directory<Project> or PhotosDirectory<Project>.
Directory<Project>
PhotosDirectory<Project>
struct ContentView: View { @StateObject var store: Directory<Project> var body: some View { List { ForEach(store.fetchedItems) { project in // do something } } .onAppear(perform: { // store.fetchAndWait() Task { await store.fetch() } }) } // stores permanently to disk // triggers UI re-render private func addProject() { let project = Project(name: "Project " + UUID().uuidString) try! store.append(project) // See wiki/useful-api for additional functionality. } }
NSFilCoordinator
Use the Swift Package Manager documentation.
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
Directory
A means of accessing the file system in a SwiftUI environment, conveniently.
Usage
Let’s assume you have a data type called ‘Project’.
By conforming to the above protocols, you may now create
Directory<Project>
orPhotosDirectory<Project>
.NSFilCoordinator
directly.Installation
Use the Swift Package Manager documentation.