0

I was able to retrieve the list of installed keyboards through NSUserDefaults and AppleKeyboards, but I wasn't able to find out which one is the current user selected. Anyway to do so programmatically?

Jonas Stawski
  • 6,562
  • 5
  • 60
  • 105

1 Answers1

3

Try using this:

[UITextInputMode currentInputMode].primaryLanguage

If you use NSLog, you will see something like fr-FR, pt-BR etc...

scollaco
  • 992
  • 8
  • 13