Recherche…


Introduction

La localisation est une fonctionnalité fournie par iOS qui traduit votre application en plusieurs langues.Pour la localisation , l' internationalisation est nécessaire. L'internationalisation est un processus qui permet à l'application iOS d'adapter différentes cultures, langues et régions.

Localisation dans iOS

Créez un fichier Localizable.strings individuel pour chaque langue. Le côté droit serait différent pour chaque langue. Considérez-le comme une paire clé-valeur:

"str" = "str-language";

Accédez à str dans Objective-C:

//Try to provide description on the localized string to be able to create a proper documentation if needed
NSString *str = NSLocalizedString(@"string", @"description of the string");

Accès str à Swift:

let str = NSLocalizedString("string", comment: "language");


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow