How can I change the time the default screen appears in an iPhone app? I am talking about the Default.png image which I have copied in the project but it appears for a longer time then required. How can i change that?
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.
You can’t change that. It’s shown until the
applicationDidFinishLaunchingWithOptions:finishes basically. So if it’s on the screen for a long time, then you’re probably doing some heavy lifting in there and you should consider doing that on a background thread after the app has launched.