在这里,我为文档存储创建了本地根目录,但我想实现 iCloud。所以我需要创建 iCloud 根目录,并且我会检查 iCloud 是否可用。如果可以创建类似的方法。在这里我添加了我的本地根方法代码
- (NSURL *)localRoot {
if (_localRoot != nil) {
return _localRoot;
}
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *artdirectoryPath = [documentsDirectory stringByAppendingPathComponent:@"/Me"];
_localRoot=[[NSURL alloc]initFileURLWithPath:artdirectoryPath];
return _localRoot;
}