PHPhotoLibrary 获取相册名称

PHPhotoLibrary get album names

我一直在尝试寻找一种替代方法,以在 iOS 中使用照片 API 获取相册名称 8. 使用 ALAssets,我们可以使用: valueForProperty:ALAssetsGroupPropertyName 但是使用照片 API,我似乎找不到替代品。 PHAssetCollection 下有: localizedTitle 但这也不对,它只是给了我城市名称。我正在寻找可以 return 群组实际名称的东西,包括与 iTunes 同步的群组名称。

如果能帮助我了解您如何在您的应用程序中执行此操作,我将不胜感激。 Apple 鼓励我们仅将照片 API 用于与 8.0 关联的应用程序,因此我不想同时使用 ALAssetLibrary 和照片。

代码:

- (NSString *)nameForAlbumInCollection:(id)collection
{
    NSString *title = nil;

    if ([PHAsset class])
    {
        title = [collection localizedTitle];
    }
    else
    {
        title = [collection valueForProperty:ALAssetsGroupPropertyName];
    }

    return title;
}

- (void)setup
{
    self.recentsCollectionDataSource = [[NSMutableOrderedSet alloc]init];
    self.favoritesCollectionDataSource = [[NSMutableOrderedSet alloc]init];
    self.albumsTableDataSource = [[NSMutableOrderedSet alloc]init];

    NSMutableArray *segmentTitles = [[NSMutableArray alloc]init];

    self.assetsFetchResult = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum | PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAny options:nil];

    if (!self.parentController.canTakeOrChooseVideo)
    {
        fetchOptions.predicate = [NSPredicate predicateWithFormat:@"mediaType = %i",PHAssetMediaTypeImage];
    }

    for (PHAssetCollection *sub in self.assetsFetchResult)
    {
        PHFetchResult *assetsInCollection = [PHAsset fetchAssetsInAssetCollection:sub options:nil];

        for (PHAsset *asset in assetsInCollection)
        {
            NSLog(@"%@",[self nameForAlbumInCollection:sub]);

            [self.recentsCollectionDataSource addObject:asset];

            if (![segmentTitles containsObject:@"Recents"])
            {
                [segmentTitles addObject:@"Recents"];
                [segmentTitles addObject:@"Albums"];
            }

            if (asset.isFavorite)
            {
                [self.favoritesCollectionDataSource addObject:asset];

                if (![segmentTitles containsObject:@"Favorites"])
                {
                    [segmentTitles addObject:@"Favorites"];
                }
            }
        }
    }
}

我认为您可能使用的是 PHCollectionList 的 localizedLocationNames 属性。正如您在问题中提到的那样,您应该在 PHAssetCollection 下使用 localizedTitle 。

我写了一个小实用程序 class 并添加了以下方法来检索专辑名称。

+ (NSString *)localizedTitleForGroupOrCollection:(id)collection {
    NSString *title = nil;
    if ([PHAsset class]) {
        title = [collection localizedTitle];
    } else {
        title = [collection valueForProperty:ALAssetsGroupPropertyName];
    }

    return title;
}

这就是我在我的项目中制作专辑名称列表的方式。您可能需要稍微偏离一下,但这应该可行。

NSArray *collectionsFetchResults;
NSMutableArray *localizedTitles = [[NSMutableArray alloc] init];

PHFetchResult *smartAlbums = [PHAssetCollection       fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum
                                                                      subtype:PHAssetCollectionSubtypeAlbumRegular options:nil];
PHFetchResult *syncedAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeAlbum
                                                                subtype:PHAssetCollectionSubtypeAlbumSyncedAlbum options:nil];
PHFetchResult *userCollections = [PHCollectionList fetchTopLevelUserCollectionsWithOptions:nil];

// Add each PHFetchResult to the array
collectionsFetchResults = @[smartAlbums, userCollections, syncedAlbums];

for (int i = 0; i < collectionsFetchResults.count; i ++) {

    PHFetchResult *fetchResult = collectionsFetchResults[i];

    for (int x = 0; x < fetchResult.count; x ++) {

        PHCollection *collection = fetchResult[x];
        localizedTitles[x] = collection.localizedTitle;

    }
}

位掩码将不起作用,因为 PHAssetCollectionTypeAlbum、PHAssetCollectionTypeSmartAlbum 和 PHAssetCollectionTypeMoment 未指定为位字段。它们取值 1、2、3。要使位掩码起作用,它们必须取值 1、2、4,每个值位于不同的位上。