0

I need use text on splash screen in four different language.

Is any way to localize Launchimage in Xcode 6?

I don't find any good solution.

Unmerciful
  • 1,325
  • 4
  • 21
  • 38
  • use MCLocalization https://github.com/Baglan/MCLocalization – Noor May 26 '15 at 06:25
  • Check this link : http://www.appcoda.com/localization-tutorial-ios8/ Here they have explained how one can localize images and add diff diff images as per localization language. – Mrunal May 26 '15 at 06:25
  • i need help with new version of xcode 6 and launch image – Unmerciful May 26 '15 at 06:31

1 Answers1

0

Don't use images. Use xib files.

In project settings general tab: Launch screen file. 
xib can be localized.

If you create new project (lets say simple view app) it is done for you. Test it on small test project first.

Edit:

For compatibility with older iOS version 7 and bellow:

use good old images. Add image to the project (do not use image assets), select image in xcode, open side menu, first tab, you find there localize, hit that button, check all required languages, copy localized copies of image to right folders that were created fro you. You are done. This approach works nicely, but drawback is that many images will increase bundle size user have to download.

Juraj Antas
  • 3,059
  • 27
  • 37