最新版本的照片库中是否弃用了 fetchAssetCollections 方法?

Is the fetchAssetCollections method deprecated in latest version of Photos library?

我在XCode

中创建了一个命令行项目

我认为这是 swift

中的有效代码
 let all = PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumUserLibrary,  

然而,当我现在尝试时,自动完成不会将 fetchAssetCollections 列为选项。

我的构造函数中出现类似问题

这是代码片段

import Foundation
import Photos

class PhotoExplorer {

    init() {
        PHPhotoLibrary.shared().register(self)
    }

    func listAssetsInPhoto() -> PHCollection {
        let fetchOptions = PHFetchOptions()
        PHAssetCollection.fetch //  <- To be complete

    }
}

这是我的构建设置

我添加了 import PhotosUI 但没有用。

我是不是做错了什么?有 API 变化吗?

修复它的唯一方法是重新创建项目。