相册在uicollectionview中以错误的顺序出现

时间:2013-10-09 12:51:47

标签: iphone ios objective-c cell uicollectionview

我正在使用一个名为psuicollection视图单元的库来在单元格中发布一些图片。除了一个关键的缺陷外,它的效果很好。它不会以正确的顺序发布它们,确切的相反顺序。如果我要张贴图片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;
  }

1 个答案:

答案 0 :(得分:0)

如何颠倒数组的顺序:

NSArray* reversedArray = [[self.Photos reverseObjectEnumerator] allObjects];