2017-08-26 1 views
0

J'ai le code pour la ActionSheet comme je peux traduire les mots "Copier", "Passé", "Envoyer", "Annuler". Comment puis-je les traduire dans d'autres langues?Localisation UIAlertController (IOS)

J'ai un fichier Localized.strings il est possible que cela à utiliser?

actionSheetController.title = NSLocalizedString("Words", comment: "") 

enter image description here

@IBAction func showActionSheetButtonAction(_ sender: Any) { 
    let actionSheetController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) 

    actionSheetController.addAction(
     UIAlertAction(title: "Copy", style: .default, handler: { [weak self] _ in 
      guard let strongSelf = self else { return } 

      UIPasteboard.general.string = strongSelf.displayResultLabel.text 
      print ("Copy") 

      let alert = UIAlertController(title: "Copied", message: "", preferredStyle: .alert) 

      let when = DispatchTime.now() + 0.6 
      DispatchQueue.main.asyncAfter(deadline: when){ 
       // your code with delay 
       alert.dismiss(animated: true, completion: nil) 
      } 

      self?.present(alert, animated: true, completion:nil) 
     }) 
    ) 

    actionSheetController.addAction(
     UIAlertAction(title: "Paste", style: .default, handler: { [weak self] _ in 
      guard let strongSelf = self else { return } 

      strongSelf.displayResultLabel.text = UIPasteboard.general.string 
      print ("Past") 

     }) 
    ) 

    actionSheetController.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler: nil)) 

    present(actionSheetController, animated: true, completion: nil) 
} 

Répondre

2

Vous devez simplement utiliser la macro chaîne localisée chaque fois que vous devez afficher le texte localisé à l'utilisateur:

let actionSheetController = UIAlertController(title: NSLocalizedString("Words", comment: "Title for Alert Sheet"), message: nil, preferredStyle: .actionSheet)