UIImageView no UICollectionViewCell personalizado, retornando nulo o tempo todo
OK no meu story board eu fiz um UICollectionView com 3 células. Uma das células que fiz uma classe personalizada para isso, obviamente, estende o UICollectionViewCell:
E eu registrei a turma no meu ViewDiDApear:
[self.collectionView registerClass:[DeviceImageCell class] forCellWithReuseIdentifier:@"Cell1"];
Também adicionei um imageView a essa célula específica e uma saída para esse imageView na minha classe personalizada. O problema ocorre quando eu faço minha célula personalizada, ele esquece tudo o que foi definido no meu storyboard, também conhecido como a cor de fundo, onde a minha visão de imagem é e assim por diante. Por causa disso, o meu imageView retorna nulo o tempo todo.
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.row == 0)
{
static NSString *identifier = @"Cell1";
DeviceImageCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
UIImage *image = [UIImage imageNamed:@"dysart-woods-full.jpg"];
cell.imageview.image = image;
cell.backgroundColor = [UIColor blueColor];
//cell.imageview.image = image;
return cell;
}
else if(indexPath.row == 1)
{
static NSString *identifier = @"Cell2";
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
return cell;
}
else
{
static NSString *identifier = @"Cell3";
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
UIImageView *imageView = (UIImageView *)[cell viewWithTag:1];
imageView.image = [UIImage imageNamed:@"dysart-woods-full.jpg"];
return cell;
}
}