Does PhotoKit provide access to People, Places, and Shared Albums?

I know how to search for Smart Albums (favorites, selfies, etc...) containing photos:

// Get smart albums

PHFetchResult *smartAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum subtype:PHAssetCollectionSubtypeAlbumRegular options:nil];

I have the following questions:

  1. Is there a way to enumerate the People Smart Albums and access the photos in a specific People Smart Album?

  2. Is there a way to enumerate the Places Smart Albums and access the photos in a specific Place Smart Album?

  3. Is there a way to enumerate Shared Albums (shared to the current iCloud user) and access the photos in a specific Shared Album?

Does PhotoKit provide access to People, Places, and Shared Albums?
 
 
Q