Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
   }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.