1

MFMailComposeViewController in other languages?

Whats the behavior of MFMailComposer language in iOS7 and iOS8?

I changed the language inside my application but the MFMailComposer stays the same with the language in the device settings (iOS8).

Is this the expected behavior in iOS 8?

If yes, how do you translate the text?

NSLocalizedString coming from Localizable.strings(specific language) doesn't seem to affect MFMailComposer in my case.

Community
  • 1
  • 1
Ted
  • 22,696
  • 11
  • 95
  • 109

1 Answers1

0

You have to add the localized strings to your project so the app can get the strings and change them for the specific language you selected. If you won't have another language, it will choose the basic english strings for presentation.

Check this post

Community
  • 1
  • 1
Alex Cio
  • 6,014
  • 5
  • 44
  • 74
  • 1
    Sorry I meant that using Localizable.strings doesn't affect the MFMailComposer – Ted May 19 '15 at 13:35