我已经在sqlite中存储了图像路径,并成功从数据库中获取了图像路径。我把它存储在一个字符串中。我在控制台中打印路径,如下所示:
2012-10-26 11:54:37.888 valvolineApp[1211:207] Image path:/Users/shufflelabs/Library/Application Support/iPhone Simulator/5.0/Applications/6B6D67DB-92AB-48C5-856B-861423FB22F4/valvolineApp.app/11_fuel system service.jpg
但是现在如何在uiimageview中显示相应的图像?
我在这里很困惑。
如果你有,分享这个想法
...感谢名单
答案 0 :(得分:0)
试试这个
UIImage *img = [UIImage imageWithContentsOfFile:(the file path)];
UIImageView *imgView = [[UIImageView alloc] initWithImage:img];
如果你仍然面临问题,下面会看到类似的帖子。