3

我有一个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: 图 1 在此处输入图像描述 在此处输入图像描述

4

1 回答 1

1

很抱歉,您没有提供足够的信息来完全诊断问题。我会从您的代码中怀疑以下可能性之一;

a) 在你的项目中没有找到指定的图片,所以返回nil;

b) 未找到标签为 101 的 imageView,因此返回 nil;

c) 找到 imageView,但未启用或隐藏。

我会在“cell.backgroundColor”行设置一个断点并检查每个返回值并检查 imageView 的状态以查看它是否已启用而不是隐藏。

于 2013-05-25T15:14:48.190 回答