私がやっていることは、ソース(カメラ/ライブラリ)から読み込んだ画像をiOSのファイルシステムに保存することです。 私が抱えているのは、その画像を保存する方法です。 次のコードを使用しています。その作業は、ドキュメントフォルダにTest.jpgを作成することです。 しかし、このTest.jpgにアクセスする方法は本当に分かりません。保存した画像をiOSに読み込む
NSString *jpgPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/Test.jpg"];
[UIImageJPEGRepresentation(selectedImage.image, 1.0) writeToFile:jpgPath atomically:YES];
NSError *error;
NSFileManager *fileMgr = [NSFileManager defaultManager];
NSString *documentsDirectory = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
'[UIImage imageNamed: "Test.jpg" @];'? – Kjuly