fetchKeyAssets(in:options:)
Retrieves assets marked as key assets in the specified asset collection.
Declaration
class func fetchKeyAssets(in assetCollection: PHAssetCollection, options: PHFetchOptions?) -> PHFetchResult<PHAsset>?Parameters
- assetCollection:
The asset collection from which to fetch assets.
- options:
Options that specify a filter predicate and sort order for the fetched assets, or
nilto use default options. For details, see Phfetchoptions.
Return Value
A fetch result that contains the requested PHAsset objects, or an empty fetch result or nil if no objects match the request.
Discussion
Most asset collections contain a key asset, which the Photos app displays as a proxy for the collection. Different types of asset collections have different ways of specifying one or more key assets. For example, in the Camera Roll collection, the most recently captured photo or video is the key asset.
This method returns nil if the assetCollection parameter references a transient asset collection (such as one created with the transientAssetCollection(with:title:) method).