我在使用包时遇到了一些问题,不知何故我无法再将图像从包保存到 docs 目录。现在我在构建之前遇到了这个错误:
文件 NSBundle.h 无法保存
它显然编译得很好。这是我正在使用的那种代码:
//Get every name from plist array and append it to the full path
for( NSString *aName in namesPackage ) {
bundlePath = [[NSBundle mainBundle] pathForResource:aName ofType:@"png"];
if([fileManager fileExistsAtPath:bundlePath])NSLog(@"it exists in bundle: %@",bundlePath);
imagePath = [NSString stringWithFormat:@"%@/%@/%@",DOCUMENTS_FOLDER,package,aName];
[fileManager copyItemAtPath:bundlePath toPath:imagePath error:&anError];
if(anError) NSLog([anError description]);
}
提前感谢您的帮助。