I used AppleKeyboards to configure the user keyboard before iOS6:
NSArray * keyboards = [[NSUserDefaults standardUserDefaults] objectForKey:@"AppleKeyboards"]; for (int i = 0; i < [keyboards count]; i++) { NSLog(@"%@", [keyboards objectAtIndex:i]); }
But after iOS6, I can't use AppleKeyboards as a customization key. Is there a solution for this? Thanks!
source share