UIImageView w niestandardowym UICollectionViewCell zwraca cały czas zero
OK w mojej tablicy opowieści Zrobiłem UICollectionView z 3 komórkami. Jedna z komórek, dla których stworzyłem klasę niestandardową, oczywiście rozszerza UICollectionViewCell:
Zarejestrowałem klasę w moim ViewDiDApear:
[self.collectionView registerClass:[DeviceImageCell class] forCellWithReuseIdentifier:@"Cell1"];
Dodałem także imageView do tej konkretnej komórki i wylot dla tego imageView w mojej klasie niestandardowej. Problem pojawia się, gdy tworzę niestandardową komórkę, zapominając o wszystkim, co zostało ustawione w mojej scenerii, czyli kolorze tła, gdzie jest mój widok obrazu i tak dalej. Z tego powodu mój imageView zwraca cały czas zero.
-(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;
}
}