【发布时间】:2018-06-19 10:01:14
【问题描述】:
如何从包括图片和视频在内的所有相册中获取资源?
let fetchOptions = PHFetchOptions()
fetchOptions.sortDescriptors = [NSSortDescriptor(key: "creationDate", ascending: true)]
let allPhotos = PHAsset.fetchAssets(with: .image, options: fetchOptions)
此代码将仅从相机胶卷中获取图像。
【问题讨论】: