我已经做了很多研究,以找出下面代码的工作区别。 当我试图从文档目录中获取图像时,可以使用NSBundle由PATH指定并在ImageView中显示它。
TYPE 1: 此代码工作正常,能够检索图像并显示:
NSString *inputPath= @"/Users/abc/Library/Application Support/iPhone Simulator/6.0/Applications/ADD46F96-333A-46BF-8291-FABD1BD7C389/Documents/colour.png";
NSString *jjj=[inputPath pathExtension];
NSString *hhhhh=[[inputPath lastPathComponent]stringByDeletingPathExtension];
NSString *bivivik=[inputPath stringByDeletingLastPathComponent];
NSString *imagePATH=[NSBundle pathForResource:hhhhh ofType:jjj inDirectory:bivivik];
theImage=[UIImage imageWithContentsOfFile:imagePATH];
mImageDisplayView.image=theImage;
TYPE 2: 但是,如果我尝试下面的代码。不提取图像并显示空值
NSString* imagepath = [[NSBundle bundleWithPath:@"/Users/abc/Library/Application Support/iPhone Simulator/6.0/Applications/ADD46F96-333A-46BF-8291-FABD1BD7C389/Documents/colour.png"]bundlePath];
theImage=[UIImage imageWithContentsOfFile:imagepath];
mImageDisplayView.image=theImage;
我的TYPE 2代码出了什么问题。有没有其他方法我可以在TYPE 2方法中尝试获取图像。请帮助我
答案 0 :(得分:4)
即使上面的代码在一个实例中有效,但两个代码片段都是错误的,因为它们无法在设备上读取文件。原因是,您正在使用模拟器能够找到的MAC的绝对路径,但在设备上不存在。
使用[NSBundle mainBundle]
从应用程序包中读取文件,
[[NSBundle mainBundle] pathForResource:@"imageName" ofType:@"png"];
要从应用程序的文档目录中读取文件,请使用此代码段
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"Myfile.png"];
UIImage *image = [[UIImage alloc] initWithContentsOfFile:filePath];
修改强>
如果您有一个包含图像文件的单独包,那么要从该包中读取,请使用此代码段。假设此捆绑包位于文档目录中,
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *bundlePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"MyBundle.bundle"];
NSBundle *myBundle = [NSBundle bundleWithPath:bundlePath];
NSString* imagePath = [myBundle pathForResource:@"MyImage" ofType:@"png"];
UIImage *image = [[UIImage alloc] initWithContentsOfFile:imagePath];
希望有所帮助!