Following predicate should fetch all the screenshots only, which work just fine.
options.predicate = [NSPredicate predicateWithFormat:@"(mediaSubtype & %d) != 0", PHAssetMediaSubtypePhotoScreenshot];
However if I try to exclude screenshots only by using follwing predicate, all of the images are excluded
options.predicate = [NSPredicate predicateWithFormat:@"(mediaSubtype & %d) = 0", PHAssetMediaSubtypePhotoScreenshot];
All Im trying to do is to exlude screeshots from asset fetch.
Is this known bug or am I missing something ?