0

I do have three separate questions but they all linked together.

Is it possible to detect if the user changes keyboard language?

Is it possible to detect what language the keyboard is currently set to.

Is it possible to detect what language the iPad is set to?

Thanks

Wain
  • 118,658
  • 15
  • 128
  • 151
  • Detect device lang: http://stackoverflow.com/questions/3910244/getting-current-device-language-in-ios – Laszlo Feb 11 '14 at 12:22

1 Answers1

1

You should look at NSLocale and autoupdatingCurrentLocale to determine the current locale and have it automatically update if the user changes settings.

NSCurrentLocaleDidChangeNotification will tell you when the locale changes.

Wain
  • 118,658
  • 15
  • 128
  • 151