I'm working on integrating some localization into an application. Unfortunately, I am finding that this is not as well documented with iOS as it seems to be with Android (just an observation, not a complaint :-) ). The steps that it looks like I should do are: 1. Create a directory called en.lproj. This will be for english. 2. Create a file in the directory called Localizable.settings. This file will contain the key-value pairs. 3. Access the contents of the file by using NSLocalizedString.
My problem that I currently have is that I can't find NSLocalizedString in the intellisense and can't seem to find the appropriate namespace that contains the method. Any suggestions on how to access the localized content is appreciated.
Wally
PS. I am familiar with Vernacular, however, I would like to stay away from it for the time being. It does not seem to have much documentation or recent checkins. That's not a complaint, just an observation.