我从图像中创建一个集合视图。现在我想从视频中制作该集合视图。但我无法解决问题。
- (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]]];
}