I have a UICollectionView which displays 4 different types of assets, each which has unique graphics and positioning associated with it. Is it better to have one UICollectionViewCell with subviews that are added based on the type of the asset or if it's better to create 4 custom UICollectionViewCells, one for each of the assets?
I'm currently in the process of testing this out, but I'm interested in hearing what other people have to say.
Here's what that CollectionViews cellForItemAtIndexPath looks like with 4 different custom UICollectionViewCells.
Asset *asset = [_assets objectAtIndex:indexPath.row];
if([asset.type isEqualToString:@"video"]){
VideoCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"VideoCell" forIndexPath:indexPath];
cell.thumbnailPath = asset.gridThumbnail;
cell.date = asset.date;
cell.type = asset.type;
return cell;
}else if([asset.type isEqualToString:@"image"]){
ImageCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"ImageCell" forIndexPath:indexPath];
cell.thumbnailPath = asset.gridThumbnail;
cell.date = asset.date;
cell.type = asset.type;
return cell;
}else if([asset.type isEqualToString:@"audio"]){
AudioCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"AudioCell" forIndexPath:indexPath];
cell.thumbnailPath = asset.gridThumbnail;
cell.date = asset.date;
cell.type = asset.type;
return cell;
}else if([asset.type isEqualToString:@"doc"]){
DocCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"DocCell" forIndexPath:indexPath];
cell.thumbnailPath = asset.gridThumbnail;
cell.date = asset.date;
cell.type = asset.type;
return cell;
}