0

以下は、アプリの言語を設定するために使用しているコードです。AppleLanguages の正しい値を見つけることができない場合があります。AppleLanguages の値のリストはどこで入手できますか?

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [デフォルト setObject:[NSArray arrayWithObject:@"arabic"] forKey:@"AppleLanguages"];

4

2 に答える 2

1

Follow this tutorial: http://www.raywenderlich.com/2876/how-to-localize-an-iphone-app-tutorial

Here is the code (as shown on the previous tutorial) http://www.loc.gov/standards/iso639-2/php/English_list.php

于 2012-06-06T07:54:19.317 に答える
0

main() 関数のように、アプリの早い段階でこれを行います。

    [[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObject:@"ar"] forKey:@"AppleLanguages"];
于 2013-07-17T12:26:12.523 に答える