Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 827 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 827 Bytes

Explicit Localization in iOS

Learn how to localize your iOS (iPhone/iPad) app by selecting the language programmatically.

Localization iOS by LightBuzz

Features

Get the languages supported by the current app

var supportedLanguages = LocalizedResources.supportedLanguages

Set the language

LocalizedResources.setLanguage(language: "English")

Localize content

label.text = LocalizedResources.getString(key: "label_text")
picture.image = UIImage(named: LocalizedResources.getString(key: "image_name"))

Contributors

License

Licensed under the MIT License.