0

Using Swift 5.3.1, Xcode 12.2, iOS 14.2.

Is it possible to directly access Firestore documents from within a DocumentGroup based iOS app?

I know that you can show the document browser with iOS 14 and SwiftUI. And it is also able to show iCloud or custom cloud documents.

But I wonder if Firestore can be the external cloud for your custom-typed document picker in iOS?

If yes, how?

4

1 回答 1

2

最简洁的答案是不。

Cloud Firestore 是云中基于文档的 NoSQL 数据库,旨在供开发人员用于构建自己的应用程序。Cloud Firestore 中的文档是指在应用程序上下文中有意义的信息单元。不要将它与文件系统或 iCloud 中的数据容器意义上的文档相混淆。从这个意义上说,它与CloudKit更相似。

话虽如此,您肯定能够实现一个文件提供程序,它使用 Cloud Firestore 以对使用文件的 iOS 应用程序有意义的表示形式存储应用程序的数据。但是,将Cloud Storage用作此类应用程序的后端可能会更有用。

我会对您的用例感到好奇-您能否详细说明您的目标是什么?

于 2020-11-14T08:59:15.137 回答