White screen on emulator

Hi, i'm importing a cordova project. Then build and test with ios simulator, when app starting stay a white page.

2019-05-10 23:13:05.005119+0300 Last Survivors[1381:56045] Apache Cordova native platform version 5.0.1 is starting.
2019-05-10 23:13:05.005716+0300 Last Survivors[1381:56045] Multi-tasking -> Device: YES, App: YES
2019-05-10 23:13:05.035786+0300 Last Survivors[1381:56045] Using UIWebView
2019-05-10 23:13:05.037107+0300 Last Survivors[1381:56045] [CDVTimer][console] 0.048041ms
2019-05-10 23:13:05.037263+0300 Last Survivors[1381:56045] [CDVTimer][handleopenurl] 0.058055ms
2019-05-10 23:13:05.038560+0300 Last Survivors[1381:56045] Unlimited access to network resources
2019-05-10 23:13:05.038705+0300 Last Survivors[1381:56045] [CDVTimer][intentandnavigationfilter] 1.358032ms
2019-05-10 23:13:05.038834+0300 Last Survivors[1381:56045] [CDVTimer][gesturehandler] 0.047922ms
2019-05-10 23:13:05.039046+0300 Last Survivors[1381:56045] [CDVTimer][socialsharing] 0.077009ms
2019-05-10 23:13:05.039151+0300 Last Survivors[1381:56045] [CDVTimer][TotalPluginStartup] 2.125025ms
2019-05-10 23:13:05.329680+0300 Last Survivors[1381:56045] Resetting plugins due to page load.
2019-05-10 23:13:05.359369+0300 Last Survivors[1381:56045] Failed to load webpage with error: The operation couldn’t be completed. (NSURLErrorDomain error -999.)
2019-05-10 23:13:05.360817+0300 Last Survivors[1381:56045] Resetting plugins due to page load.
2019-05-10 23:13:05.803289+0300 Last Survivors[1381:56045] Finished load of: file:///Users/ma/Library/Developer/CoreSimulator/Devices/002DB2EE-B825-45F0-9E3B-FFEE9078EC91/data/Containers/Bundle/Application/CEF59776-DBE8-4AEC-A574-3A0FE6AD6341/Last%20Survivors.app/www/index.html


What can i do? I didn't find about "NSURLErrorDomain error -999"


thank you.

Replies

I found this for code 999


https://stackoverflow.com/questions/16073519/nsurlerrordomain-error-code-999-in-ios/16076142


As you can see;

-999
is caused by
ErrorCancelled
.

This means: another request is made before the previous request is completed.

or

session property is deinit before completion of async work

Same here. Did you solved it? Someone tell me how to solve this issue