如何在 iOS Swift 中显示库中的实时照片视频并在 Collection-View 中显示?

Posted

技术标签:

【中文标题】如何在 iOS Swift 中显示库中的实时照片视频并在 Collection-View 中显示?【英文标题】:How to display Live-photos Videos from library and display in Collection-View in iOS Swift? 【发布时间】:2018-03-31 13:22:44 【问题描述】:

用于显示实时照片:

func fetchLivePhotos() 

    let options = PHFetchOptions()

    options.sortDescriptors = [ NSSortDescriptor(key: "creationDate", ascending: false) ]

    options.predicate = NSPredicate(format: "(mediaSubtype & %d) != 0",PHAssetMediaSubtype.photoLive.rawValue)

    DispatchQueue.global(qos: DispatchQoS.QoSClass.default).async 
        self.livePhotoAssets = PHAsset.fetchAssets(with: options)

        DispatchQueue.main.async 
            self.collectionView?.reloadData()
        
    

在网格代码中显示如下:

 func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell 

        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "MediaCell", for: indexPath) as! MediaCell

        if let asset = livePhotoAssets?[indexPath.row]
            let options = PHImageRequestOptions()
            options.isNetworkAccessAllowed = true

            let targetSize = CGSize(width: 200, height: 200)
            PHImageManager.default().requestImage(for: asset, targetSize: targetSize, contentMode: .aspectFill, options: options, resultHandler:  (image: UIImage?, info: [AnyHashable : Any]?) in
                cell.backgroundImageView.image = image
            )
        

        cell.selectedImage.isHidden = true
        return cell
    

对于获取视频,我使用的是这个谓词:

  option.predicate = NSPredicate(format: "mediaType == %i",PHAssetMediaType.video.rawValue)

但在 Collectionview 中两者都不显示。

【问题讨论】:

【参考方案1】:

尝试覆盖 UICollectionViewDataSource 协议中的方法:

public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int 
    if let count = livePhotoAssets?.count 
        return count
    
    return 0

还有:

不要忘记将 ViewController 设置为表视图数据源。 如果您是从情节提要创建的,请不要忘记在情节提要中附加 collectionView 属性。

我已经构建了它并且运行良好。

【讨论】:

我还使用操作表显示实时照片和视频,但我需要在不使用操作表的情况下显示两者。 使用操作表是什么意思?

以上是关于如何在 iOS Swift 中显示库中的实时照片视频并在 Collection-View 中显示?的主要内容,如果未能解决你的问题,请参考以下文章

图像选择器崩溃 - iOS Swift

我想让用户选择使用相机拍照或从库中挑选照片(ios-swift,apple example-foodtracker)

Swift 3 - 如何在应用程序中使用照片库图片?

从swift库中选择照片不起作用

如何选择存储在 iOS 库中的最后一张图片

快速显示实时照片[重复]