Reputation: 17591
I have a problem, what's the way to organize localized launch images in xcode 5, is there a way to do it?
thanks
Upvotes: 1
Views: 1983
Reputation: 17591
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...
Upvotes: 1
Reputation: 1914
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.
Upvotes: 0
Reputation: 5667
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.
Upvotes: -1