Hello friends I need help I have created an app in cordova and embedded in an iframe part with a web, but this is not displayed iframe is empty, and the console does not show any error. Do any of you know why this is happening?
Hello friends I need help I have created an app in cordova and embedded in an iframe part with a web, but this is not displayed iframe is empty, and the console does not show any error. Do any of you know why this is happening?
Why do not you better use the cordova 'packager'?
From terminal access to the directory of your project and type the following to add the iOS platform
cordova platform add ios
Gener the package for iOS
cordova build ios
Test in the simulator
cordova emulate ios
To open the project generated by cordova for XCODE go to the next route
PATH_DE_PROJECT / platforms / ios
You have to configure the URLs to which you want your app to navigate, this is done with the allow-navigation tag in the config.xml
<allow-navigation href="http://tupagina.com/*" />
If you want to allow navigation to any page then use a *
<allow-navigation href="*" />