How to Localize NSPhotoLibraryUsageDescription key (ALAssets)

余生颓废 提交于 2019-12-03 01:23:55
Joe Licari

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 file Localizable.strings.

In it you would have and entry something like:

NSPhotoLibraryUsageDescription = "Test of new Photos warnings";

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 in InfoPlist.string if it is available for the language. Otherwise it will use whatever is defined in info.plist.

I have my note here https://github.com/onmyway133/notes/issues/290, or you will get

Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data. Once these issues have been corrected, you can then redeliver the corrected binary.

Make sure

  • You declare the keys in Info.plist
  • You localize it in InfoPlist.strings
  • You don't need double quotes, like "NSPhotoLibraryUsageDescription" = "Test of new Photos warnings";, you can just use NSPhotoLibraryUsageDescription = "Test of new Photos warnings";
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!