【发布时间】:2012-10-10 09:41:34
【问题描述】:
iOS6之前我用AppleKeyboards获取用户的键盘设置:
NSArray * keyboards = [[NSUserDefaults standardUserDefaults] objectForKey:@"AppleKeyboards"];
for (int i = 0; i < [keyboards count]; i++)
{
NSLog(@"%@", [keyboards objectAtIndex:i]);
}
但在 iOS6 之后,我不能使用 AppleKeyboards 作为用户设置的键。 有什么解决方案吗?谢谢!
【问题讨论】:
标签: objective-c ios6