0
votes

I've got the iOS Splashscreen running with my own Image, set these in Xcode but then if my app is loaded but now is a little time till my website appears and in this gap it shows a spinner and the default phonegap splashscreen. This problem occurs firstly after I tried to rename the project and copy it before this at this place it shows still my own Image and only append the spinner...

I've captured my ipad screen for a better clarification: https://vimeo.com/91899022

A Screenshot of my project structure: (All folders related to the splashscreen) All folders related to the splashscreen

Any Ideas on this ?

EDIT: I've just remembered that I changed the way to use icons and splashscreens in xcode to the asset catalog system..

2
have you set splashscreen with xcodeAmit Prajapati
yes, but I also set it in my config.xmlMarvin Oßwald

2 Answers

0
votes

In Xcode AppDelegate.m Increase thread spleep time to set

[NSThread sleepForTimeInterval:8.0];

in this method

 - (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions
{

    [NSThread sleepForTimeInterval:8.0];
    ----
    ----
    ----
    ----
    ----
    ----
    ----
    ----
}
0
votes

Finally the problem was solved by the new 3.5.0 update.. thanks to the phonegap team :)