0

我已经在 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 中显示相应的图像?

我在这里很困惑。

分享这个想法,如果你有

谢谢...

4

1 回答 1

0

尝试这个

 UIImage *img = [UIImage imageWithContentsOfFile:(the file path)];
 UIImageView *imgView = [[UIImageView alloc] initWithImage:img];

如果你仍然面临问题,下面会看到类似的帖子。

以编程方式在 uiimageview-iphone 中显示图像

在uiimageview中显示图像

如何在 iPhone 中的图像视图中显示图像

于 2012-10-26T06:43:54.510 回答