April 2015
Intermediate to advanced
556 pages
17h 47m
English
NSLocalizedString and genstrings make it very easy to generate a Localizable.strings file for your app. However, the steps that they follow to generate the file are easy and worthwhile to understand. You can do all of this yourself.
A strings file is just a collection of key-value pairs. The key and the value are strings surrounded by quotes, and the pair is terminated with a semicolon:
"Key1" = "Value1"; "Key2" = "Value2";
You can create a strings file yourself and add it to your project just by dragging it into Xcode. Once you have added the file, you can create localizations of it for other languages using the file inspector.
Once you have added the file to your project and created ...