无法获取图像,也没有可见的界面

时间:2013-05-21 11:53:46

标签: ios save image

当我使用保存代码时,我得到@ interface的错误"secondViewController"声明了选择器getcachedirectorypath。我用了

 @interface getCacheDirectoryPath : UIImagePickerController

在.h文件中。 下面是.m文件

-(UIImage *)getImageFromCacheWithName:(NSString *)name
{NSString *_imagePath =[NSString stringWithFormat:@"%@/%@.png",[self     getCacheDirectoryPath],name];

if([[NSFileManager defaultManager]fileExistsAtPath:_imagePath])

{UIImage *_image =[UIImage imageWithContentsOfFile:_imagePath];

    return _image;

}

return nil;

0 个答案:

没有答案