保存コードを使用すると、decalres the selectorのエラー@ 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;