我有一个集合视图,但图像没有显示,有趣的是方法 didSelectItemAtIndexPath 正在工作......可能有什么问题?这是我的 cellForItemAtIndexPath 代码
cell *cell = [self.collectionPhotos dequeueReusableCellWithReuseIdentifier:@"CVCell" forIndexPath:indexPath];
NSString *nombre =[self.arrayPhotos objectAtIndex:indexPath.row];
//[cell.imageView setImage:[UIImage imageNamed:nombre]];
cell.imageView.image = [UIImage imageNamed:nombre];
return cell;