我正在尝试从外部 API 获取图像并将其绑定到该视图中的 UICollectionView 和 UIImageView 单元格。我能够获取数据并将其打印在日志文件中。但是,我无法在我的 UICollectionView 上看到图像。这是我的数据绑定的代码。
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ImagesViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
// imagesArray is an array with serialized json data.
NSDictionary *finalImages = [self.imagesArray objectAtIndex:indexPath.row];
NSLog(@"Entering collection view.....");
[[cell imageViewCell]setImage:[UIImage imageNamed:[finalImages valueForKey:@"link"]]];
return cell;
}
数据以 JSON 格式提供。
data
{
abc: 'abc',
xyz: 'xyx',
link: 'link to an online image'
}