我有一个UICollectionView
显示图像数组的。单元格中的图像显示为白框,而不是真实图像。
我从另一个视图复制并粘贴了这段代码,它在另一个视图中运行良好……但不知何故,在另一个视图中,它显示所有图像,就像一个白框。
显示的框等于应显示的图像数量。所以信息是正确传递的。
图像像小白框一样显示,但是当我单击它们时,它们会将所选图像显示到UIImage
我放置在其他位置的另一个元素中(请参见 image1,清除按钮左侧的绿色方块会根据哪个白色单元格Ii 触摸而变化)。
谁能发现为什么UIImage
单元格中的显示不正确?
也许值得一提的是,我在同一个视图中也有一个 tableview
// in viewDidLoad method
[self.myCollection registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"Cells"];
//
- (void)getAllIcons
{
NSArray* imgArrayRaw = [[NSBundle mainBundle] pathsForResourcesOfType:@"png" inDirectory:nil];
NSMutableArray* imgArray = [[NSMutableArray alloc] init];
for (NSString* imgArrayProccesing in imgArrayRaw) {
NSString* ho = [imgArrayProccesing lastPathComponent];
if([ho rangeOfString:@"btn-"].location != NSNotFound){
[imgArray addObject:ho];
}
}
_imgFiles = [ NSMutableArray arrayWithObjects:imgArray,nil];
_imgFiles = _imgFiles[0];
_myCollection.hidden = NO;
[_myCollection reloadData];
}
// Collection View
#pragma mark - UICollectionView Datasource
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return [_imgFiles count];
}
- (NSInteger)numberOfSectionsInCollectionView: (UICollectionView *)collectionView
{
return 1;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"Cells" forIndexPath:indexPath];
UIImageView *imageView = (UIImageView *)[cell viewWithTag:101];
imageView.image = [UIImage imageNamed:[_imgFiles objectAtIndex:indexPath.row]];
cell.backgroundColor = [UIColor whiteColor];
return cell;
}
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
[self changeIconImage:[_imgFiles objectAtIndex:indexPath.row]];
}
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
return CGSizeMake(50, 50);
}
- (UIEdgeInsets)collectionView:
(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
{
return UIEdgeInsetsMake(50, 20, 50, 20);
}
图片1: