
Localization inside the application without using iPhone language settings.
Today we will start with the internationalization of an iPhone app from within the application. This is something most of us want to do as it not only helps the user experience but also prevents us from changing the iphone's language setting every time we want a different language for the app.
So quickly lets get started. We create a project in xcode and name it as you like it.
Now, the way to go about localizing the app is to create a ".strings" file in the app which can be created from resource like this:
Create a Localizable.strings file from resource
By default the name of our created language resource string file is 'Localizable.strings '
What...