作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
startDownloadingUbiquitousItemAtURL:error 在哪里方法将下载的文件保存在本地? 和给定的一样吗URL ? 最佳答案 是的,它的网址相同 从 iCloud 下载到
我正在使用 NSFileManager 的 startDownloadingUbiquitousItemAtURL 将文件从 iCloud 下载到本地副本(在这种情况下,本地还没有文件的副本)。我似乎
我是一名优秀的程序员,十分优秀!