gpt4 book ai didi

iphone - startDownloadingUbiquitousItemAtURL 本地文件路径?

转载 作者:行者123 更新时间:2023-12-01 19:08:38 24 4
gpt4 key购买 nike

startDownloadingUbiquitousItemAtURL:error 在哪里方法将下载的文件保存在本地?
和给定的一样吗URL ?

最佳答案

是的,它的网址相同

从 iCloud 下载到设备之前的文件是一种占位符。

您可以使用 NSURLUbiquitousItemIsDownloadedKey 键检查 URL 的状态

NSURL *foo = file://cloud/container/reference/tofile;

NSNumber *isDownloadedValue = NULL;

BOOL success = [foo getResourceValue:&isDownloadedValue forKey: NSURLUbiquitousItemIsDownloadedKey error:NULL];

if (success && ![isDownloadedValue boolValue]) {
[[NSFileManager defaultManager] startDownloadingUbiquitousItemAtURL:foo error:NULL];
}

该片段中没有您想要在生产代码中执行的错误处理。

关于iphone - startDownloadingUbiquitousItemAtURL 本地文件路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18332360/

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