NSURLConnection error 1100 while running ionic app on iOS NSURLConnection error 1100 while running ionic app on iOS xcode xcode

NSURLConnection error 1100 while running ionic app on iOS


Had the same issue and after quite a bit struggle and R&D this is what worked for me.

Seems like relative path is taken by IOS so in your src -> index.html please change thisbase href="/"tobase href="./" (note dot at the beginning of the /)

this will load all the relevant js files (cordova.js, polyfill.js etc.)

the 1100 errors are files not being found due to absolute path.


After researching a lot a trying a lot of stuff, my solution was to execute this command:

ionic cordova plugin add cordova-plugin-ionic-webview --save