在数据库中,我有一个图像路径列表,路径如下所示。
assets-library://asset/asset.JPG?id=94473FB8-A6CE-4775-9C57-B8350B335E2B&ext=JPG
我正在尝试采用该路径并使用它加载图像。但是 graphImage 返回 nil 并且图像路径不是 nil。
如何将带有路径的图像加载到单元格的 UIImageView 中?
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath;
{
NSString *imagePath = [array_photos objectAtIndex:[indexPath row]];
UIImage *graphImage = [[UIImage alloc] initWithContentsOfFile: imagePath];
cell.photoImageView.image = graphImage;
}