UIImage
ドキュメント ディレクトリからa をロードし、以下のように a に設定しようとしてUIImageView
います。
NSString *pngfile = [[MyUtil getLocalDirectory] stringByAppendingPathComponent:@"school.png"];
NSLog(@"%@", pngfile);
if ([[NSFileManager defaultManager] fileExistsAtPath:pngfile]) {
NSData *imageData = [NSData dataWithContentsOfFile:pngfile];
UIImage *img = [UIImage imageWithData:imageData];
[schoolImage setImage:img];
}
ただし、上記を試すたびに、画像が読み込まれません。画像は にありDocuments/MyAppCustomDirectory/school.png
ます。上記はそのディレクトリからロードするのに正しいですか?
私はまた、他のいくつかを試しました: UIImage imageWithContentsOfFile
SO 応答に基づく他の方法の中で。