I make a collection view from images. Now I want to make that collection view from videos. But I cannot solve the problem.
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
UICollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"cellIdentifier" forIndexPath:indexPath];
//It shows images in collection view
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:[imageFileNames objectAtIndex:indexPath.row]]];
//It does not shows videos in collection view
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:[videoFileNames objectAtIndex:indexPath.row]]];
}