In my app, I want to support localization. I able to localise app using Localizable.strings
except for Info.plist file. I want to localise app's privacy alert messages. I found below helpful links but it is not working with Xcode 9.4.1
and iOS 11+
.
I followed the same steps:
Created
InfoPlist.strings
Localised this file for selected languages
And added keys and values as :
Key = "value";
in thisInfoPlist.strings
fileeg.
NSContactsUsageDescription = "App use Contacts to select contacts";
Also found this file in
"Project settings" -> "Build Phases" -> "Copy Bundle Resources"
Found some blogs/information as:
- https://stackoverflow.com/a/25736915/1635315
- Apple developer site
- https://burcugeneci.wordpress.com/2015/11/19/can-you-localize-your-info-plist/
- https://stackoverflow.com/a/26059896/1635315
Any idea how to do with Xcode 9.4.1
and iOS 11+
?