I'm just use the PhotoKit to delete photos, just like this:
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
[PHAssetChangeRequest deleteAssets: arrayOfPHAssets];
} completionHandler:^(BOOL success, NSError *error) {
NSLog(@"Finished deleting asset. %@", (success ? @"Success." : error));
}];
And the result is:delete image's info
How to change the title's language to Chinese. I have a try to change iPhone's language and it doesn't matter.Please.