我正在使用一个名为 psucollection view cell 的库在单元格中发布一些图片。它工作得很好,除了一个关键的缺陷。它没有以正确的顺序发布它们,确切地说是完全相反的顺序。如果我要发布图片 A 然后是图片 B,图片 B 将是第一张图片,然后图片 A 将是下一张照片。如何反转图像的顺序?
- (PSUICollectionViewCell *)collectionView:(PSUICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
PhotosModel *photoModel = [self.Photos objectAtIndex:indexPath.row];
Cell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:GridCellIdentifier forIndexPath:indexPath];
cell.image.clipsToBounds=YES;
[cell.image setContentMode:UIViewContentModeScaleAspectFill];
[cell.image setImageWithURL:[NSURL URLWithString:photoModel.image_name]];
return cell;
}