我正在创建一个像照片应用程序的应用程序。我的应用程序创建相册并捕获图像并将其保存在照片应用中的相册中。为此,我使用的是Photos框架。当我提取相册时,它会为我提供由我的应用以及其他应用创建的相册。所以我只想要我的应用程序创建的专辑/图像,而不是其他应用程序。
答案 0 :(得分:1)
没有直截了当的方法来做到这一点。但这是一种解决方法。
PHFetchResult *topLevelUserCollections = [PHCollectionList fetchTopLevelUserCollectionsWithOptions:nil];
self.collectionsFetchResults = @[topLevelUserCollections];
for (PHFetchResult *fetchResult in self.collectionsFetchResults) {
for (PHAssetCollection *assetCollection in fetchResult) {
BOOL shouldShowCollection = NO;
if ([assetCollection.localizedTitle isEqualToString:@"YOUR_APP_NAME"]) {
shouldShowCollection = YES;
}
if (shouldShowCollection) {
//collectionsToShow are the collections that you will show up in your table view
[self.collectionsToShow addObject:assetCollection];
}
}
}