I'm trying to localize the NSPhotoLibraryUsageDescription key defined in the application's info.plist file (reference here).
This key gives you a point to provide custom message when the app is first asking for access to your camera roll.
I'm using ALAssetsLibrary to enumerate assets groups (which triggers the access request message to pop-up).
So far my googling doesn't answer how I could achieve this.
I want to avoid localizing the whole info.plist file as it contain a lot more non-locale dependent content.
Anyone already solved this or have hints how to proceed?
I have my note here https://github.com/onmyway133/notes/issues/290, or you will get
Make sure
"NSPhotoLibraryUsageDescription" = "Test of new Photos warnings";
, you can just useNSPhotoLibraryUsageDescription = "Test of new Photos warnings";
There is a file you can create (which may be created for you when you create a project) called
InfoPlist.strings
. This file is used and localized much like the fileLocalizable.strings
.In it you would have and entry something like:
Note that there are no quotation marks around the key
I think as long as the key is included in
info.plist
, it will localized using the value inInfoPlist.string
if it is available for the language. Otherwise it will use whatever is defined in info.plist.