所以我试图用一些图片填充uicollectionView。这些图片位于名为uneImage的nsMutableArray中,而nomPhoto是一个nsstring。
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
Cellule * celluleCourante = [collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
nomPhoto=uneImages[indexPath.item];
celluleCourante.photo.image=[UIImage imageNamed:nomPhoto];
return celluleCourante;
}
当我手动填充带有图片名称的nomPhoto时,它工作正常(它总是相同的图像,但它填满了所有单元格)。 我已经尝试了不同的东西而没有发现任何有用的东西......我认为这是我的阵列的内容没有正确的名称,但经过验证后,这不是问题。 请帮帮我!!