My Ipad application needs to have a Settings Menu to select the language. I am planning to set the label with text
self.myLabel.text = myStringVariable;
myStringVariable is set with an SQLite query similar to
SELECT myString from MyTable where Language='Italian' and id='myid'.
OR
SELECT myString from MyTable where Language='English' and id='myid'.
This means i need to keep an SQLite table with all the strings.Is it the right way? Or is there any built in way to give the values hardcored inside the app which automatically changes the string values. In another words i am trying to AVOID the condition similar to the following for each label in my app.
if (Language==English) { self.myLabel.text = myStringVariable.....}
Thanks in Advance