アプリでアルバム名を変更したい。
if ([collection canPerformEditOperation:PHCollectionEditOperationRename] == YES)
{
//rename localizedTitle
}
それが「YES」なら名前を変えたい。
私のコードは次のとおりです。
PHFetchOptions *userAlbumsOptions = [PHFetchOptions new];
userAlbumsOptions.predicate = [NSPredicate predicateWithFormat:@"estimatedAssetCount > 0"];
PHFetchResult *userAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAny options:userAlbumsOptions];
[userAlbums enumerateObjectsUsingBlock:^(PHAssetCollection *collection, NSUInteger idx, BOOL *stop)
{
}];