I want to have my loading image be different each time i start the app. Is there a way to change this to something else once the app’s started?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not technically, no. The startup images are located inside the application bundle – as part of iOS’s sandboxing, applications can’t change or modify files inside that bundle (so your Info.plist and your background images).
It would be possible to have your startup image be black, and then swap it out for another splash screen that you hold for a few seconds as soon as your
applicationDidFinishLoadingmethod is called – but remember this will degrade the user experience, since you’ll be delaying the time it takes to get into the app.