1

I have a problem, what's the way to organize localized launch images in xcode 5, is there a way to do it?

thanks

cyclingIsBetter
  • 17,447
  • 50
  • 156
  • 241

3 Answers3

1

SOLVED!!!!

Set in plist file "Launch image" in "Default"

and have two file for launch image in the project as

Default-Landscape@2x~ipad and Default-Landscape@~ipad

that you can localize as another file...

cyclingIsBetter
  • 17,447
  • 50
  • 156
  • 241
0

Yes, you have a way to do that. Looks like you can get an idea to your answer here in this post of StackOverflow Question.

Please do check the answer posted here. That is more close to your question.

Community
  • 1
  • 1
Balram Tiwari
  • 5,657
  • 2
  • 23
  • 41
  • Link to an answer, which is just a link to another answer? – CaptJak Dec 13 '13 at 16:34
  • Yes, so that you can see even other's questions with similar problem, while traversing back to the actual answer. – Balram Tiwari Dec 13 '13 at 16:41
  • Not correct. Post a comment containing the link and then flag the question as duplicate. Otherwise SO will start to look messy with everyone asking the same questions and linking everything to each other. It's sloppy. – CaptJak Dec 13 '13 at 16:44
  • @CaptJak : I have edited the answer as advised. Hope this will not make things messy. – Balram Tiwari Dec 13 '13 at 16:48
0

Actually, you can create a temp ViewController and you can put a UIImageView on your View. After launch your program you can direct to this temp ViewController and set the image according to your language. than you can call your main ViewController.

And i used this class for change the language in my program. https://github.com/tonisalae/TSLanguageManager

I hope, it can be help for you.

Kirdok
  • 1,904
  • 2
  • 22
  • 27
  • This is more like a splash screen. But launch image is something that renders on on the full screen on device before you load any of your view controller. You will still see the default black screen for a moment untill your app finished the loading of your tempviewController – Balram Tiwari Dec 13 '13 at 17:15
  • Yes i know, but the user will wait only more 1-2 secs, and will not understand.I used to this one before and i didn't get any complaints. – Kirdok Dec 13 '13 at 17:26
  • It's not about getting complain from users. The real goal of launch image is to provide user a fast responsive feel. However it's just an impression. Refer [here](https://developer.apple.com/library/ios/documentation/userexperience/conceptual/mobilehig/LaunchImages.html) in documentation. – Balram Tiwari Dec 13 '13 at 17:31
  • Yes you right but, we can't set the image to launch image dynamically , so i just adviced that way :). – Kirdok Dec 13 '13 at 17:36