user265961
user265961

Reputation: 1373

For the iPhone, can you program for different languages?

For the iPhone, is it possible to program applications to translate words from a base language to any of several languages of various users. If so, how?

Upvotes: 0

Views: 125

Answers (2)

flohei
flohei

Reputation: 5308

You can easily get a localized string using NSBundle s -localizedStringForKey:value:table: for values that you've defined in a localizable.strings file.

Upvotes: 0

ceejayoz
ceejayoz

Reputation: 180126

Sure, this is called localisation (or as Apple calls it, "internationalization"). Here's a tutorial, and here are the Apple docs on it.

Upvotes: 3

Related Questions