I enumerate my ALAssetGroup like this:
ALAssetsLibraryGroupsEnumerationResultsBlock listGroupBlock = ^(ALAssetsGroup *group, BOOL *stop) {
if (group.isEditable){
NSLog(@"group is %@", group);
[group setAssetsFilter:[ALAssetsFilter allPhotos]];
[groups addObject:group];
}
This filters the group to have only photos included in it's .numberOfAssets
. However, I'd like to get both the photos count and the video count. How would I do that without enumerating the whole thing for the 2nd time?