您好我的一个视图中有一个名为promoBanner的UIImageView Outlet。我正在尝试编写将以编程方式设置此插座的代码。基本上,该应用程序附带NSBundle中的图像。但我想确保它从文档文件夹中获取图像。我想这样做是因为将来会有不同的“促销”,应用程序应该在“promoBanner”图像视图中显示正确的图像。这是我写的代码,但我不确定为什么它不起作用。有人可以给我一个想法:
- (void)viewDidLoad
{
[super viewDidLoad];
//==========================================================================
NSError *error;
NSString *errorDesc = nil;
NSPropertyListFormat format;
NSData *promoImg;
NSString *rootPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *promoImgDocPath = [rootPath stringByAppendingPathComponent:@"promoBanner.png"];
NSFileManager *fileManager = [NSFileManager defaultManager];
if (![fileManager fileExistsAtPath:promoImgDocPath])
{
NSString *plistBundlePath = [[NSBundle mainBundle] pathForResource:@"promoBanner" ofType:@"png"];
[fileManager copyItemAtPath:plistBundlePath toPath:promoImgDocPath error:&error];
if(![fileManager fileExistsAtPath:promoImgDocPath])
{
NSLog(@"The copy function did not work, file was not copied from bundle to documents folder");
}
}
self.promoBanner.image =[UIImage imageWithContentsOfFile:promoImgDocPath];
if (!self.promoBanner.image)
{
NSLog(@"Error setting image: %@, format: %d", errorDesc, format);
}
非常感谢 错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSFileManager copyItemAtPath:toPath:error:]: source path is nil'
* 首次调用堆栈:
CoreFoundation 0x3759dc7b __exceptionPreprocess + 114
libobjc.A.dylib 0x32d9bee8 objc_exception_throw + 40
CoreFoundation 0x3759dac3 + [NSException raise:format:arguments:] + 70
CoreFoundation 0x3759daf7 + [NSException raise:format:] + 30
基金会0x351a8653 - [NSFileManager copyItemAtPath:toPath:错误:] + 90
餐厅0x000068c3 - [AboutViewController viewDidLoad] + 286
UIKit 0x35926e60 - [UIViewController视图] + 160
答案 0 :(得分:0)
如果promoBanner.png不是我的捆绑包中的文件,我可以收到您的错误。但是,如果我将文件添加到项目中,代码将编译。
您确定已将promoBanner.png添加到项目中(通过将其拖入XCode或使用“文件 - >将文件添加到”
答案 1 :(得分:0)
[[NSBundle mainBundle] pathForResource:@"promoBanner" ofType:@"png"];
返回零。如果文件不在您的工作区中,请添加它。如果是,请检查以确保您实际上已将图像包含在构建中。在Xcode 4中: