简体   繁体   中英

Use localized strings in storyboard

I'm pretty new to iOS development and I was asking my self if it is possible to use localized strings from my "Localizable.strings" file directly into the storyboard. For example in Android you can do it from the XML file like this:

android:text="@string/notConnected"

I understood that you can make a localized version of the storyboard, but having different strings files and different storyboards looks pretty ugly to me.

So is it possible to have only strings files and use what I need into the storyboard? Preferably without setting it from code?

EDIT: This is practically what I want to do: 在故事板中引用字符串

So is this possible? Is there a legit way to call a string from there like in Android?

I think being able to localise String s in the storyboard is of significant advantage. I don't agree with @elk_cloner that hooking up IBOutlet s for every UILabel is the way forward.

One way of getting it to work is using an @IBInspectable property on a UILabel subclass:

class LocalisableLabel: UILabel {

    @IBInspectable var localisedKey: String? {
        didSet {
            guard let key = localisedKey else { return }
            text = NSLocalizedString(key, comment: "")
        }
    }

}

In the storyboard set the custom class:

在此处输入图片说明

In the attributes inspector the localisedKey field will appear and you can just add your key here.

在此处输入图片说明

That's it!

EDIT:

You can localise UIButton s the same way, BUT if the text in the storyboard's title field differs from the localised String (which it will in other languages) the setting of the title will animate.

To fix this, put the setTitle in a performWithoutAnimation block:

class LocalisableButton: UIButton {

    @IBInspectable var localisedKey: String? {
        didSet {
            guard let key = localisedKey else { return }
            UIView.performWithoutAnimation {
                setTitle(key.localized, for: .normal)
                layoutIfNeeded()
            }
        }
    }

}

In addition to Leon's answer , you can get rid of the need for an explicit subclass by using an extension:

extension UILabel {
    @IBInspectable var localizableText: String? {
        get { return text }
        set(value) { text = NSLocalizedString(value!, comment: "") }
    }
}

According to your requirement it's not possible but

You don't need different storyboards for localization

Suppose you want to localize a label string.

  1. Draw and outlet and change text using

mylabel.text = nsLocalizedString("THIS_IS_MY_STRING",nil);

Of course in your localization file there will be a line.You must have different files for different language.Suppose you have a file for english and there must be a line.

"THIS_IS_MY_STRING" = "This is my string";

When you compile your app, that function will use mapping to localize your app.

Edit:

If you want detail information please have a look at these tutorials internationalization-tutorial-for-ios-2014

and ios-localization-tutorial

There are some online script(eg localize.py) which will help you to automatically search all of your code and find out nslocalizedString function and make lines in your localizableString files. like this.

"THIS_IS_MY_STRING" = "THIS_IS_MY_STRING"

and later on you just have to write actual string there. :)

Make a button class and set @IBInspectable attribute to the button class

    class Button: UIButton {                 

      @IBInspectable public var referenceText: String = "" {
          didSet {
              self.setTitle(NSLocalizedString(referenceText, comment: ""), for: .normal)
          }
      }
}

Then in the storyboard you can set referenceText 在此处输入图片说明

The button text will be "Sign In"

Another possible way is to localize the storyboard and simply change the values for labels and buttons directly on the .string file.

First select the storyboard, and click on localize:

在此处输入图片说明

Then you'll be able to select the languages you want.

在此处输入图片说明

This way you'll be able to continue developing on your language of choice and simply edit the .string file that is generated

for button

extension UIButton {
@IBInspectable var localizableText: String? {
    get { return titleLabel?.text }
    set(value)
    {
    setTitle(NSLocalizedString(value!, comment: ""), for: .normal)
    }}}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM