Sqliteデータベースに、デバイスに保存されている画像の完全なパスがあり、その画像でUIImageを設定する必要があります。
例:
NSLog(@"Path %@", imagePath);
出力:
/Users/Sk*****/Library/Application Support/iPhone Simulator/4.3.2/Applications/15977219-DEFE-407A-BB80-72E188E18DD2/Documents/20-10-20111746.png
+ (UIImage *)imageWithContentsOfFile:(NSString *)path
を使用する
UIImage *image = [UIImage imageWithContentsOfFile:imagePath];
Swift 3.0コードはこちら..
contentsOfFile
を使用します
imageView.image = UIImage.init(contentsOfFile: imagePath)