0

AppleKeyboards を使用して、iOS6 より前のユーザーのキーボード設定を取得しました。

NSArray * keyboards = [[NSUserDefaults standardUserDefaults] objectForKey:@"AppleKeyboards"];
for (int i = 0; i < [keyboards count]; i++)
{
  NSLog(@"%@", [keyboards objectAtIndex:i]);
}

しかしiOS6以降、AppleKeyboardsをユーザー設定のキーとして使えなくなりました。これに対する解決策はありますか?ありがとう!

4

1 に答える 1

1

UITextInputMode クラスを使用して、「+ (UITextInputMode *)currentInputMode」で現在のテキスト入力モードを取得できます。

参照: https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UITextInputMode_Class/Reference/Reference.html

于 2012-10-11T14:12:03.087 に答える