In my project(need localization), I need to perform a image delete request like this:
[[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
[PHAssetChangeRequest deleteAssets:self.phassets];
} completionHandler:^(BOOL success, NSError * _Nullable error) {
}];
But the alert tile images
is not localized:
I have tried to add CFBundleDisplayName
and CFBundleName
to the localization file, but it does not work.
How Can I manage to localization some "inner title" of iOS?