TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
NHLocalize help you to localize your apps, without coding for all propreties like this:
[_mylabel setText:NSLocalizedString(@"key", @"comment")];
Using NHLocalize you can do it through Storyboard.
Create the Localizable.strings
, as you know. If you don't read it first: (http://www.raywenderlich.com/2876/localization-tutorial-for-ios)
Now, go to your Storyboard
, select you object (in my case is an UILabel) and open Identity Inspector
.
On Key Path
add the tag localize. Type
change to String. And in Value
you need to add the key you've created on Localizable.strings
, in this case I added LABEL.
You can use it with UILabel, UIButton, UITextField, UITextView and UIImageView.
Enjoy :)