PHAssets / PHAssetCollection / PHCollectionList和文件夹

时间:2017-02-02 18:30:21

标签: ios swift photos phasset phassetcollection

我正在关注Apple的示例代码' ExampleappusingPhotosframework '。

在PHAssets / PHAssetCollection的主题中,我注意到存在“文件夹”的可能性。这些可以从Mac的照片应用程序或旧的iPhoto应用程序等创建出来......

存在文件夹PHAssetCollection的可能性,该文件夹可以包含未知级别的嵌套文件夹,最后以相册结尾。

因此,即使上面的示例项目崩溃,如果我在照片库中有嵌套文件夹。大多数应用程序似乎都忽略了,根本没有显示这些文件夹。

举个例子,假设这个例子存在:

enter image description here

文件夹级别1>文件夹级别2>自定义相册> Image1,Image2

iOS照片应用程序如何处理它:

enter image description here

任务

在根据相册列表中,在用户相册下,应显示“文件夹级别1”。当点击它时,我想列出所有子文件夹中的所有图像,无论子级别.......

viewDidLoad中

override func viewDidLoad() {
    super.viewDidLoad()

    let addButton = UIBarButtonItem(barButtonSystemItem: .add, target: self, action: #selector(self.addAlbum))
    self.navigationItem.rightBarButtonItem = addButton


    // Create a PHFetchResult object for each section in the table view.
    let allPhotosOptions = PHFetchOptions()
    allPhotosOptions.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: true)]
    allPhotos = PHAsset.fetchAssets(with: allPhotosOptions)
    smartAlbums = PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .albumRegular, options: nil)
    userCollections = PHCollectionList.fetchTopLevelUserCollections(with: nil)
    PHPhotoLibrary.shared().register(self)

}

cellForRowAt

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    switch Section(rawValue: indexPath.section)! {
        case .allPhotos:
            let cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier.allPhotos.rawValue, for: indexPath)
            cell.textLabel!.text = NSLocalizedString("All Photos", comment: "")
            return cell

        case .smartAlbums:
            let cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier.collection.rawValue, for: indexPath)
            let collection = smartAlbums.object(at: indexPath.row)
            cell.textLabel!.text = collection.localizedTitle
            return cell

        case .userCollections:
            let cell = tableView.dequeueReusableCell(withIdentifier: CellIdentifier.collection.rawValue, for: indexPath)
            let collection = userCollections.object(at: indexPath.row)

            cell.textLabel!.text = collection.localizedTitle
            return cell
    }
}

Segue公司

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {

    guard let destination = (segue.destination as? UINavigationController)?.topViewController as? AssetGridViewController
        else { fatalError("unexpected view controller for segue") }
    let cell = sender as! UITableViewCell

    destination.title = cell.textLabel?.text

    switch SegueIdentifier(rawValue: segue.identifier!)! {
        case .showAllPhotos:
            destination.fetchResult = allPhotos
        case .showCollection:

            // get the asset collection for the selected row
            let indexPath = tableView.indexPath(for: cell)!
            let collection: PHCollection
            switch Section(rawValue: indexPath.section)! {
                case .smartAlbums:
                    collection = smartAlbums.object(at: indexPath.row)
                case .userCollections:
                    collection = userCollections.object(at: indexPath.row)
                default: return // not reached; all photos section already handled by other segue
            }

            // configure the view controller with the asset collection
            guard let assetCollection = collection as? PHAssetCollection
                else { fatalError("expected asset collection") }
            destination.fetchResult = PHAsset.fetchAssets(in: assetCollection, options: nil)
            destination.assetCollection = assetCollection
    }
}

问题

assetCollection?。 canContainCollections 似乎是决定因素。但是,无论子级别/子文件夹如何,我如何获取文件夹中包含的所有PHAsset? (这是不可能的,因为即使是股票应用程序在1级内都有“所有照片”)

1 个答案:

答案 0 :(得分:1)

使用当前的开发人员API(PhotoKit),没有简单的方法(如使用单个请求)列出文件夹(及其子文件夹/相册)中的所有资源。但是,您可以递归枚举文件夹中的所有相册及其子文件夹,然后将结果放入单个数组中。但是,这可能会很慢,具体取决于嵌套结构中包含的级别和资产的数量。 请注意,任何级别的文件夹也可以包含相册(例如,在“文件夹级别1”上,除了“文件夹级别2”文件夹之外,还可能有相册)。 Apple的照片应用程序没有使用PhotoKit - 所以我认为他们可以通过一个请求来实现这一点。