Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You can find it in NSUserDefaults:</p> <pre><code>NSDictionary* defaults = [[NSUserDefaults standardUserDefaults] dictionaryRepresentation]; </code></pre> <p>I tested it on iOS Simulator (iOS 5.0). I have only US keyboard installed. Contents of defaults:</p> <pre><code>AppleITunesStoreItemKinds = ( eBook, document, "software-update", booklet, "itunes-u", newsstand, artist, podcast, "podcast-episode", software ); AppleLanguages = ( en, fr, de, ja, nl, it, es, pt, "pt-PT", da, fi, nb, sv, ko, "zh-Hans", "zh-Hant", ru, pl, tr, uk, ar, hr, cs, el, he, ro, sk, th, id, ms, "en-GB", ca, hu, vi ); AppleLocale = "en_US"; NSInterfaceStyle = macintosh; NSLanguages = ( en, fr, de, ja, nl, it, es, pt, "pt-PT", da, fi, nb, sv, ko, "zh-Hans", "zh-Hant", ru, pl, tr, uk, ar, hr, cs, el, he, ro, sk, th, id, ms, "en-GB", ca, hu, vi ); } </code></pre> <p>Then I added russian keyboard and contents of NSUserDefaults become:</p> <pre><code>{ AppleITunesStoreItemKinds = ( eBook, document, "software-update", booklet, "itunes-u", newsstand, artist, podcast, "podcast-episode", software ); AppleKeyboards = ( "en_US@hw=US;sw=QWERTY", "ru_RU@hw=Russian;sw=Russian" ); AppleKeyboardsExpanded = 1; AppleLanguages = ( en, fr, de, ja, nl, it, es, pt, "pt-PT", da, fi, nb, sv, ko, "zh-Hans", "zh-Hant", ru, pl, tr, uk, ar, hr, cs, el, he, ro, sk, th, id, ms, "en-GB", ca, hu, vi ); AppleLocale = "en_US"; NSInterfaceStyle = macintosh; NSLanguages = ( en, fr, de, ja, nl, it, es, pt, "pt-PT", da, fi, nb, sv, ko, "zh-Hans", "zh-Hant", ru, pl, tr, uk, ar, hr, cs, el, he, ro, sk, th, id, ms, "en-GB", ca, hu, vi ); } </code></pre> <p>So, you need to use <strong>AppleKeyboards</strong> and <strong>AppleKeyboardsExpanded</strong> keys.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload