Здравствуйте!
Есть динамическая ячейка с массивом изображений, все отображаются корректно, реализовал функцию загрузки видео и хранение ее в CoreData, ума не приложу как отобразить его в collectionview вместе с фото? Видео скачано в формате mp4 и хранится в NSData. Подскажите, будьте добры)
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Collection_cell", for: indexPath) as! CollectionViewCell
let images = NSKeyedUnarchiver.unarchiveObject(with: recipe.imageRecipe! as Data) as! NSArray
let video = NSKeyedUnarchiver.unarchiveObject(with: recipe.videoRecipe! as Data) as! NSData
let img = UIImage(data: images[indexPath.row] as! Data)!
cell.recipeImageView.image = img
return cell
}