I am trying to get all get all photos by except for the photos in my own album. I try to get all the photos using the method in this answer. ios - Simple example to get list of photo albums? but I can't find an option to filtrate my own album.
I use the code like below...I can get the the albums except my own one,but how can I get PHFetchResult with all the photos except my the photos in my own album?
Thank you.
PHFetchOptions *albumsFetchOption = [[PHFetchOptions alloc]init];
NSString *string = @"MyCam";
albumsFetchOption.predicate = [NSPredicate predicateWithFormat:@"title != %@",string];
PHFetchResult *userAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeAny options:albumsFetchOption];
At last ,I use NSArray instead of PHFetchResult...
//fetch all