gpt4 book ai didi

ios - 将 iCloud Drive 文件管理器添加到 App - iOS 13

转载 作者:行者123 更新时间:2023-12-05 07:14:40 24 4
gpt4 key购买 nike

我想支持在我的 iOS 应用程序中将文件添加到 iCloud。我希望将这些文件添加到 iCloud Drive 上的文件夹中(例如 Numbers 或 Pages 文件夹)。我尝试了我在网上找到的关于这个主题的所有内容,但我没有设法将文件夹添加到 iCloud Drive。

首先,我将 NSUbiquitousContainers 添加到 info.plist

<key>NSUbiquitousContainers</key>
<dict>
<key>iCloud.com.<xyz>.AppName</key>
<dict>
<key>NSUbiquitousContainerIsDocumentScopePublic</key>
<true/>
<key>NSUbiquitousContainerName</key>
<string>App Name</string>
<key>NSUbiquitousContainerSupportedFolderLevels</key>
<string>Any</string>
</dict>
</dict>

在此之后,我将 iCloud 功能添加到我的应用程序中: iCloud capability

然后,我将以下代码添加到我的 ViewController 中:

if let iCloudDocumentsURL = FileManager.default.url(forUbiquityContainerIdentifier: nil)?.appendingPathComponent("Documents") {
if (!FileManager.default.fileExists(atPath: iCloudDocumentsURL.path, isDirectory: nil)) {
do {
try FileManager.default.createDirectory(at: iCloudDocumentsURL, withIntermediateDirectories: true, attributes: nil)
} catch {
print(error.localizedDescription)
}
}
}

注意:设置断点后,我发现 if (!FileManager.default.fileExists(atPath: iCloudDocumentsURL.path, isDirectory: nil)) { 之后的代码永远不会被调用。我暂时删除了这一行,但这没有做任何事情

最后,我使用以下代码添加了一个文件:

//Save text file to local directory
let file = "file.txt" //Text file to save to iCloud
let text = "sample text" //Text to write into the file
func saveToDirectory(){
guard let directory = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first else { return }
let fileURL = directory.appendingPathComponent(file)

print(directory)
//Writing
do {
try text.write(to: fileURL, atomically: false, encoding: .utf8)
} catch {
/* error handling here */
print("Error in writing")
}

//Reading
do {
let getText = try String(contentsOf: fileURL, encoding: .utf8)
print(getText)
} catch {
/* error handling here */
print("Error in reading")
}
}

我没有看到应用程序的文件夹,或者上述文件出现在我的 iCloud Drive 上。但是,当我下载应用程序容器并查看其内容时,我看到该文件列在 /AppData/Documents 下。

其他人有这个吗?和/或有人知道如何解决这个问题吗?

谢谢!

我还更改了我的应用程序的构建/版本号,但没有任何结果

最佳答案

您应该将文件复制到 iCloud 容器,您只是将其写入应用沙箱。

首先,在您的 iCloud 容器上创建 Documents 文件夹 - 如果您将文件存储在其他文件夹中,您在另一台设备上的应用程序将看到该文件夹​​,但它不会出现在文件应用程序中。

然后将您的 file.txt 复制到您的 iCloud 容器上的 Documents 文件夹中。

关于ios - 将 iCloud Drive 文件管理器添加到 App - iOS 13,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59802590/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com